From d4920f7a0b3146a2218a210d3f93b655ff010eb3 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 01 二月 2024 17:14:13 +0800 Subject: [PATCH] 开发业务接口 --- server/service/src/main/java/com/doumee/core/utils/Constants.java | 25 ++++++++++++++++++++++--- 1 files changed, 22 insertions(+), 3 deletions(-) diff --git a/server/service/src/main/java/com/doumee/core/utils/Constants.java b/server/service/src/main/java/com/doumee/core/utils/Constants.java index f55caa7..14fe22d 100644 --- a/server/service/src/main/java/com/doumee/core/utils/Constants.java +++ b/server/service/src/main/java/com/doumee/core/utils/Constants.java @@ -3,6 +3,7 @@ import com.doumee.core.constants.ResponseStatus; import com.doumee.core.exception.BusinessException; import com.doumee.dao.business.model.Solutions; +import com.doumee.dao.business.vo.CountCyclePriceVO; import io.swagger.models.auth.In; import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; @@ -159,6 +160,23 @@ LocalDate currentDate = LocalDate.now(); long age = ChronoUnit.YEARS.between(birthDate, currentDate); return age; + } + + + public static CountCyclePriceVO countPriceVO(Date startDate, Solutions solutions){ + CountCyclePriceVO countCyclePriceVO = new CountCyclePriceVO(); + if(solutions.getInsureCycleUnit().equals(Constants.ZERO)){ + countCyclePriceVO.setEndDate(DateUtil.afterDateByType(startDate,0,solutions.getInsureCycle())); + }else if(solutions.getInsureCycleUnit().equals(Constants.TWO)){ + Integer monthDays = DateUtil.monthDays(startDate); + Date afterDate = DateUtil.afterDateByType(startDate,0,monthDays); + countCyclePriceVO.setEndDate(DateUtil.afterDateByType(afterDate,0,-1)); + }else if(solutions.getInsureCycleUnit().equals(Constants.THREE)){ + Date afterDate = DateUtil.afterDateByType(startDate,2,solutions.getInsureCycle()); + countCyclePriceVO.setEndDate(DateUtil.afterDateByType(afterDate,0,-1)); + } + countCyclePriceVO.setCyclePrice(Constants.countDetailFee(solutions,countCyclePriceVO.getEndDate(),startDate)); + return countCyclePriceVO; } public static Integer getSexByIdCard(String idCard){ @@ -1012,12 +1030,12 @@ UPLOAD(0, "鎻愪氦鎶ユ","鎻愪氦鎰忚锛�${param}"), PLATFORM_RETURN(1, "骞冲彴閫�鍥�","鎻愪氦鎰忚锛�${param}"), PLATFORM_CONFIRM_INFORMATION(2, "骞冲彴纭璧勬枡",""), - PLATFORM_FINISH(3, "骞冲彴瀹屾垚鍙楃悊","鎻愪氦鎰忚锛�${param}"), + PLATFORM_FINISH(3, "缁撴鎻愪氦","鎻愪氦鎰忚锛�${param}"), UPDATE_DATA(4, "淇敼淇℃伅","鎻愪氦鎰忚锛�${param}"), SUPPLEMENT(5, "琛ュ厖璇存槑","鎻愪氦鎰忚锛�${param}"), PLATFORM_LP_DEAL(6, "骞冲彴鐞嗚禂澶勭悊","鎻愪氦鎰忚锛�${param}"), - PLATFORM_REMARK(7, "骞冲彴澶囨敞鏍囩",""), - PLATFORM_ADDCODE(8, "骞冲彴娣诲姞鎶ユ鍙�",""), + PLATFORM_REMARK(7, "骞冲彴澶囨敞鏍囩","${param}"), + PLATFORM_ADDCODE(8, "骞冲彴娣诲姞鎶ユ鍙�","澶囨鍙凤細${param}"), PLATFORM_UN_AGREE_BACK(9, "浼佷笟涓嬭浇璧勬枡",""), PLATFORM_DOWNLOAD(10, "骞冲彴涓嬭浇璧勬枡",""), PLATFORM_CHECK_PASS(11, "骞冲彴涓婁紶璧勬枡",""), @@ -1402,6 +1420,7 @@ } } zipOutputStream.closeArchiveEntry(); + file.delete(); } } } -- Gitblit v1.9.3