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; }