From c9ef7d730614ba895f6d432a5f9da65d3c263852 Mon Sep 17 00:00:00 2001 From: zhangjf Date: Mon, 2 Mar 2026 07:30:51 +0800 Subject: [PATCH] =?UTF-8?q?feat(cust):=20=E4=BC=98=E5=8C=96=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=AE=A1=E7=90=86=E6=A8=A1=E5=9D=97=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 完善CustomerContact客户联系人实体 - 优化实体类字段定义和注解配置 -增强数据校验和业务逻辑 --- .../com/fundplatform/cust/data/entity/CustomerContact.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fund-cust/src/main/java/com/fundplatform/cust/data/entity/CustomerContact.java b/fund-cust/src/main/java/com/fundplatform/cust/data/entity/CustomerContact.java index 7aea94d..df61e69 100644 --- a/fund-cust/src/main/java/com/fundplatform/cust/data/entity/CustomerContact.java +++ b/fund-cust/src/main/java/com/fundplatform/cust/data/entity/CustomerContact.java @@ -14,7 +14,7 @@ public class CustomerContact extends BaseEntity { /** * 客户ID */ - private Long customerId; + private String customerId; /** * 联系人姓名 @@ -51,11 +51,11 @@ public class CustomerContact extends BaseEntity { */ private String remark; - public Long getCustomerId() { + public String getCustomerId() { return customerId; } - public void setCustomerId(Long customerId) { + public void setCustomerId(String customerId) { this.customerId = customerId; }