From efaba8b3b77ac7bee6a3c39f85caa676e6b71d33 Mon Sep 17 00:00:00 2001
From: 李白 <7387820+wjli_13439841639@user.noreply.gitee.com>
Date: 星期四, 14 五月 2026 10:36:57 +0800
Subject: [PATCH] 开会后对客商排产计划,销售人员的整体修改

---
 platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/entity/ContractPaymentSchedule.java |   41 ++++++++++++++++++++++++++++-------------
 1 files changed, 28 insertions(+), 13 deletions(-)

diff --git a/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/entity/ContractPaymentSchedule.java b/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/entity/ContractPaymentSchedule.java
index 614592d..2f80b76 100644
--- a/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/entity/ContractPaymentSchedule.java
+++ b/platformx-business-finance-api/src/main/java/com/by4cloud/platformx/business/entity/ContractPaymentSchedule.java
@@ -13,6 +13,9 @@
 import lombok.ToString;
 import org.springframework.format.annotation.DateTimeFormat;
 
+import java.math.BigDecimal;
+import java.util.Date;
+
 /**
  * 鍚堝悓鏀舵璁″垝/灞ョ害鑺傜偣瀹炰綋绫�
  * 缁熶竴绠$悊鍚堝悓鐨勬敹娆鹃樁娈点�佸饱绾﹁妭鐐广�佹敹娆炬瘮渚嬪強灞ョ害鏃堕棿鑺傜偣
@@ -70,16 +73,16 @@
     // ==================== 鏀舵姣斾緥/閲戦 ====================
 
     @Schema(description = "鏀舵姣斾緥锛�%锛屽30琛ㄧず30%锛夛紙鏄炬�ц绱狅級")
-    @Column(columnDefinition = "double comment '鏀舵姣斾緥锛�%锛�'")
-    private Double paymentRatio;
+    @Column(columnDefinition = "decimal(10,2) comment '鏀舵姣斾緥锛�%锛�'")
+    private BigDecimal paymentRatio;
 
     @Schema(description = "璁″垝鏀舵閲戦锛堟牴鎹悎鍚屾�婚噾棰�*姣斾緥鑷姩璁$畻锛�")
-    @Column(columnDefinition = "double comment '璁″垝鏀舵閲戦'")
-    private Double plannedAmount;
+    @Column(columnDefinition = "decimal(10,2) comment '璁″垝鏀舵閲戦'")
+    private BigDecimal plannedAmount;
 
     @Schema(description = "瀹為檯鏀舵閲戦")
-    @Column(columnDefinition = "double default 0.00 comment '瀹為檯鏀舵閲戦'")
-    private Double actualAmount;
+    @Column(columnDefinition = "decimal(10,2) comment '瀹為檯鏀舵閲戦'")
+    private BigDecimal actualAmount;
 
     // ==================== 鏃跺簭鎺у埗 ====================
 
@@ -87,17 +90,29 @@
     @Column(columnDefinition = "int not null comment '闃舵椤哄簭'")
     private Integer stageOrder;
 
-    @Schema(description = "璁″垝鏀舵鏃ユ湡锛堝熀浜庡悎鍚岀璁㈡棩鏈�+绾﹀畾澶╂暟璁$畻锛�")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
-    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
-    @Column(columnDefinition = "VARCHAR(64) comment '璁″垝鏀舵鏃ユ湡'")
-    private String plannedPaymentDate;
+//    @Schema(description = "璁″垝鏀舵鏃ユ湡锛堝熀浜庡悎鍚岀璁㈡棩鏈�+绾﹀畾澶╂暟璁$畻锛�")
+//    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
+//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
+//    @Column(columnDefinition = "date comment '璁″垝鏀舵鏃ユ湡'")
+//    private Date plannedPaymentDate;
+
+	@Schema(description = "鏀舵鏃ユ湡")
+	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@Column(columnDefinition = "datetime comment '鏀舵鏃ユ湡'")
+	private Date paymentDate;
 
     @Schema(description = "鏀舵闃舵鐢熸晥鏃ユ湡锛堥殣鎬ц绱� - 灞ョ害鏃堕棿璧风偣锛屽嵆璇ヨ妭鐐瑰疄闄呰揪鎴愮殑鏃ユ湡锛�")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
-    @Column(columnDefinition = "VARCHAR(64) comment '鏀舵闃舵鐢熸晥鏃ユ湡锛堝饱绾﹁妭鐐瑰疄闄呰揪鎴愭棩鏈燂級'")
-    private String effectiveDate;
+    @Column(columnDefinition = "date comment '鏀舵闃舵鐢熸晥鏃ユ湡锛堝饱绾﹁妭鐐瑰疄闄呰揪鎴愭棩鏈燂級'")
+    private Date effectiveDate;
+
+	@Schema(description = "鏀舵闃舵鎴鏃ユ湡")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
+    @Column(columnDefinition = "date comment '鏀舵闃舵鎴鏃ユ湡'")
+    private Date effectiveEndDate;
 
     @Schema(description = "绾﹀畾澶╂暟锛堝悎鍚岀璁㈠悗X澶╁唴浠樻/璐у埌鍚嶺澶╁唴浠樻绛夛級")
     @Column(columnDefinition = "int default 0 comment '绾﹀畾澶╂暟'")

--
Gitblit v1.9.1