From 9f5458b24888bd4ea007528643b25659154b912a Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期三, 17 五月 2023 09:52:30 +0800
Subject: [PATCH] 对于ZfCleanController,ZfCollectionController,ZfContactController, ZfDoctorController,ZfEconomyController,ZfEquipmentController, ZfEventController,ZfPetController,ZfPetNoteController, ZfPropertyController把对应导入模板请求修改成了post请求,另外把对应的 sheetName进行了修改
---
zhang-content/src/main/java/com/ruoyi/service/ZfMasterService.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/zhang-content/src/main/java/com/ruoyi/service/ZfMasterService.java b/zhang-content/src/main/java/com/ruoyi/service/ZfMasterService.java
index 291e61d..63da86e 100644
--- a/zhang-content/src/main/java/com/ruoyi/service/ZfMasterService.java
+++ b/zhang-content/src/main/java/com/ruoyi/service/ZfMasterService.java
@@ -2,7 +2,10 @@
import com.baomidou.mybatisplus.extension.service.IService;
+import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfMaster;
+
+import java.util.List;
/**
* <p>
@@ -14,4 +17,9 @@
*/
public interface ZfMasterService extends IService<ZfMaster> {
+ AjaxResult getMasterInfoByPetId(Long pid);
+
+ List<ZfMaster> selectByCondition(ZfMaster zfMaster);
+
+ AjaxResult mySave(ZfMaster zfMaster);
}
--
Gitblit v1.9.1