客户管理功能联调

This commit is contained in:
spllzh
2025-10-24 10:41:48 +08:00
parent 2b9d14cc2e
commit 6801f06db5
27 changed files with 411 additions and 145 deletions

View File

@@ -77,5 +77,17 @@ public class CustomerManagement implements Serializable {
@TableField("remark")
private String remark;
@Schema(description = "详细地址")
@TableField("detailed_address")
private String detailedAddress;
@Schema(description = "销售电话")
@TableField("sales_phone")
private String salesPhone;
@Schema(description = "联系客户次数")
@TableField("contact_count")
private Integer contactCount;
}