From 22271e641e4505ba906c3770905b7e84e3ad8d85 Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期二, 02 四月 2024 17:05:57 +0800 Subject: [PATCH] mrshi --- server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java | 33 ++++++++++++++++++++++++++++++--- 1 files changed, 30 insertions(+), 3 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 2961dd3..14b0e80 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,18 @@ import com.doumee.core.model.PageData; import com.doumee.core.model.PageWrap; +import com.doumee.dao.business.dto.ApplyChangeCyclePriceDTO; +import com.doumee.dao.business.dto.ApplyChangeOptDTO; import com.doumee.dao.business.model.ApplyChange; +import com.doumee.dao.business.model.InsuranceApply; +import com.doumee.dao.business.vo.CountCyclePriceVO; + import java.util.List; /** - * 鍔犲噺淇濈敵璇蜂俊鎭〃Service瀹氫箟 + * 鍔犲噺淇濇崲鍘傜敵璇蜂俊鎭〃Service瀹氫箟 * @author 姹熻箘韫� - * @date 2024/01/15 11:15 + * @date 2024/01/16 10:03 */ public interface ApplyChangeService { @@ -19,7 +24,10 @@ * @return Integer */ Integer create(ApplyChange applyChange); - + Integer update(ApplyChange applyChange); + Integer back(ApplyChange param); + Integer dealBackApply(ApplyChange param); + Integer uploadPidan(ApplyChange insuranceApply); /** * 涓婚敭鍒犻櫎 * @@ -87,6 +95,9 @@ */ PageData<ApplyChange> findPage(PageWrap<ApplyChange> pageWrap); + PageData<ApplyChange> findPageForCompany(PageWrap<ApplyChange> pageWrap); + + /** * 鏉′欢缁熻 * @@ -94,4 +105,20 @@ * @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); + + CountCyclePriceVO getChangeCountCyclePriceVO(ApplyChangeCyclePriceDTO applyChangeCyclePriceDTO); } -- Gitblit v1.9.3