From a9ca0823ab8f33ca85abebcf6ec4a8da235adb49 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 30 一月 2024 14:36:49 +0800 Subject: [PATCH] 开发业务接口 --- server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java | 26 ++++++++++++++++++++++++-- 1 files changed, 24 insertions(+), 2 deletions(-) diff --git a/server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java b/server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java index cd48277..46f3def 100644 --- a/server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java +++ b/server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java @@ -2,13 +2,16 @@ import com.doumee.core.model.PageData; import com.doumee.core.model.PageWrap; +import com.doumee.dao.business.dto.ApplyChangeOptDTO; import com.doumee.dao.business.model.ApplyChange; +import com.doumee.dao.business.model.InsuranceApply; + import java.util.List; /** * 鍔犲噺淇濇崲鍘傜敵璇蜂俊鎭〃Service瀹氫箟 * @author 姹熻箘韫� - * @date 2024/01/15 15:07 + * @date 2024/01/16 10:03 */ public interface ApplyChangeService { @@ -19,7 +22,9 @@ * @return Integer */ Integer create(ApplyChange applyChange); - + Integer back(ApplyChange param); + Integer dealBackApply(ApplyChange param); + Integer uploadPidan(ApplyChange insuranceApply); /** * 涓婚敭鍒犻櫎 * @@ -87,6 +92,9 @@ */ PageData<ApplyChange> findPage(PageWrap<ApplyChange> pageWrap); + PageData<ApplyChange> findPageForCompany(PageWrap<ApplyChange> pageWrap); + + /** * 鏉′欢缁熻 * @@ -94,4 +102,18 @@ * @return long */ long count(ApplyChange applyChange); + + void changeOpt(ApplyChangeOptDTO applyChangeOptDTO); + + ApplyChange findDetail(Integer id); + + Integer editPidan(ApplyChange applyChange); + + ApplyChange exportJiajianBaoExcel(ApplyChange model); + + ApplyChange exportChangeUnitExcel(ApplyChange model); + + String getSignLinkJiajiabao(ApplyChange model); + + String getSignLinkChangeUnit(ApplyChange model); } -- Gitblit v1.9.3