补充客客户信息照片和性别年龄

This commit is contained in:
2026-05-02 18:09:07 +08:00
parent 557e12f631
commit 1799735b21
4 changed files with 113 additions and 9 deletions

View File

@@ -37,6 +37,14 @@ public class CustomerManagement implements Serializable {
@TableField("customer_name")
private String customerName;
@Schema(description = "性别")
@TableField("gender")
private String gender;
@Schema(description = "年龄")
@TableField("age")
private Integer age;
@Schema(description = "联系方式")
@TableField("contact")
private String contact;
@@ -93,6 +101,18 @@ public class CustomerManagement implements Serializable {
@TableField("contact_count")
private Integer contactCount;
@Schema(description = "正面照片URL")
@TableField("front_photo_url")
private String frontPhotoUrl;
@Schema(description = "侧面照片URL")
@TableField("side_photo_url")
private String sidePhotoUrl;
@Schema(description = "生活照URL")
@TableField("life_photo_url")
private String lifePhotoUrl;
@Schema(description = "操作类型")
@TableField("operation_type")
private String operationType;