From a0974f04b5a83e3ab152ce79e53f180e7b496165 Mon Sep 17 00:00:00 2001 From: shiyunteng <shiyunteng@example.com> Date: 星期一, 08 六月 2026 15:00:51 +0800 Subject: [PATCH] fix:发票管理模块 --- platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java | 33 +++++++++++++++++++++++++++++---- 1 files changed, 29 insertions(+), 4 deletions(-) diff --git a/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java b/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java index 42ed018..8ed8caf 100644 --- a/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java +++ b/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/vo/ContractDetailVo.java @@ -1,7 +1,5 @@ package com.by4cloud.platformx.business.vo; -import com.by4cloud.platformx.business.dto.ContractPaymentScheduleAddDTO; -import com.by4cloud.platformx.business.dto.ContractSubjectMatterAddDTO; import com.by4cloud.platformx.business.entity.ContractPaymentSchedule; import com.by4cloud.platformx.business.entity.ContractSubjectMatter; import com.fasterxml.jackson.annotation.JsonFormat; @@ -19,11 +17,17 @@ @Schema(description = "鍚堝悓鍚嶇О") private String contractName; + @Schema(description = "鍚堝悓鍚嶇О") + private String contractNo; + @Schema(description = "鐢叉柟id") private Long partyAId; @Schema(description = "鐢叉柟鍚嶇О") private String partyA; + + @Schema(description = "鐢叉柟绋庡彿") + private String partyAOrgCode; @Schema(description = "涔欐柟id") private Long partyBId; @@ -54,13 +58,16 @@ @Schema(description = "绛剧讲鏃ユ湡") private String signDate; + @Schema(description = "浜や粯鍛ㄦ湡") + private Integer deliveryCycle; + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") @JsonFormat(pattern = "yyyy-MM-dd HH:mm") @Schema(description = "鐢熸晥鏃ユ湡") private String effectiveDate; - @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") - @JsonFormat(pattern = "yyyy-MM-dd HH:mm") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd") @Schema(description = "鍒版湡鏃ユ湡") private String expirationDate; @@ -70,6 +77,24 @@ @Schema(description = "澶囨敞") private String remark; + @Schema(description = "妯$増ID") + private Long templateId; + + @Schema(description = "鍚堝悓鍒嗙被") + private String contractCategory; + + @Schema(description = "绛捐鍦扮偣") + private String signPlace; + + @Schema(description = "鎵ц鍛ㄦ湡 1/鍛� 2/鏈� 3/瀛e害 4/鍗婂勾 5/骞�") + private String execFrequency; + + @Schema(description = "鎵ц娆℃暟") + private Integer execTimes; + + @Schema(description = "鎵ц鏃ユ湡鍚庡灏戝ぉ鐢熸垚搴旀敹") + private Integer execDay; + private List<ContractPaymentSchedule> contractPaymentSchedule; private List<ContractSubjectMatter> contractSubjectMatter; -- Gitblit v1.9.1