From 9597821e57d4bad1ea4e984241f363be956dda8c Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期四, 03 七月 2025 18:21:33 +0800 Subject: [PATCH] zjh20250703 --- ltkj-hosp/src/main/java/com/ltkj/hosp/service/ApiJcycpdgjzService.java | 66 +++++++++++++++++++++++++++++++++ 1 files changed, 66 insertions(+), 0 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/ApiJcycpdgjzService.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/ApiJcycpdgjzService.java new file mode 100644 index 0000000..f2f41ad --- /dev/null +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/ApiJcycpdgjzService.java @@ -0,0 +1,66 @@ +package com.ltkj.hosp.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.ltkj.hosp.domain.ApiJcycpdgjz; + +import java.util.List; + +/** + * ClassName: ApiJcycpdgjzService <br/> + * Description: <br/> + * date: 2025/7/3 15:06<br/> + * + * @author zjh<br /> + */ +public interface ApiJcycpdgjzService extends IService<ApiJcycpdgjz> { + /** + * 鏌ヨ鍏抽敭瀛� + * + * @param id 鍏抽敭瀛椾富閿� + * @return 鍏抽敭瀛� + */ + public ApiJcycpdgjz selectApiJcycpdgjzById(Long id); + + /** + * 鏌ヨ鍏抽敭瀛楀垪琛� + * + * @param apiJcycpdgjz 鍏抽敭瀛� + * @return 鍏抽敭瀛楅泦鍚� + */ + public List<ApiJcycpdgjz> selectApiJcycpdgjzList(ApiJcycpdgjz apiJcycpdgjz); + + /** + * 鏂板鍏抽敭瀛� + * + * @param apiJcycpdgjz 鍏抽敭瀛� + * @return 缁撴灉 + */ + public int insertApiJcycpdgjz(ApiJcycpdgjz apiJcycpdgjz); + + /** + * 淇敼鍏抽敭瀛� + * + * @param apiJcycpdgjz 鍏抽敭瀛� + * @return 缁撴灉 + */ + public int updateApiJcycpdgjz(ApiJcycpdgjz apiJcycpdgjz); + + /** + * 鎵归噺鍒犻櫎鍏抽敭瀛� + * + * @param ids 闇�瑕佸垹闄ょ殑鍏抽敭瀛椾富閿泦鍚� + * @return 缁撴灉 + */ + public int deleteApiJcycpdgjzByIds(Long[] ids); + + /** + * 鍒犻櫎鍏抽敭瀛椾俊鎭� + * + * @param id 鍏抽敭瀛椾富閿� + * @return 缁撴灉 + */ + public int deleteApiJcycpdgjzById(Long id); + + + List<String> getGjzList(); +} -- Gitblit v1.8.0