From e60a09778f98f0e496af1ba23de55d30609e04f7 Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期一, 10 四月 2023 16:49:25 +0800
Subject: [PATCH] 修改了contacts中的index.js中的getContractList方法,要传入查询参数 export function getContactList(query) {   return request({     url: '/zfContact/all' ,     method: 'get',     params: query

---
 zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java b/zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java
index dd9a2b3..e6a397f 100644
--- a/zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java
+++ b/zhang-content/src/main/java/com/ruoyi/service/IZfPropertyService.java
@@ -1,9 +1,12 @@
 package com.ruoyi.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.domain.PageParams;
 import com.ruoyi.domain.ZfProperty;
 
 import java.time.LocalDateTime;
+import java.util.List;
 
 
 /**
@@ -13,5 +16,6 @@
  */
 public interface IZfPropertyService extends IService<ZfProperty>
 {
+    AjaxResult selectUserList(ZfProperty zfProperty,Integer pageNum,Integer pageSize);
 
 }

--
Gitblit v1.9.1