补充客客户信息照片和性别年龄
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user