feat(ShopDealerApply): 添加分销商申请相关字段
-增加分销商名称 (dealerName) - 增加分销商编码 (dealerCode) -增加合同时间 (contractTime)
This commit is contained in:
@@ -31,6 +31,12 @@ public class ShopDealerApply implements Serializable {
|
|||||||
@Schema(description = "姓名")
|
@Schema(description = "姓名")
|
||||||
private String realName;
|
private String realName;
|
||||||
|
|
||||||
|
@Schema(description = "分销商名称")
|
||||||
|
private String dealerName;
|
||||||
|
|
||||||
|
@Schema(description = "分销商编码")
|
||||||
|
private String dealerCode;
|
||||||
|
|
||||||
@Schema(description = "手机号")
|
@Schema(description = "手机号")
|
||||||
private String mobile;
|
private String mobile;
|
||||||
|
|
||||||
@@ -51,6 +57,10 @@ public class ShopDealerApply implements Serializable {
|
|||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private LocalDateTime auditTime;
|
private LocalDateTime auditTime;
|
||||||
|
|
||||||
|
@Schema(description = "合同时间")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private LocalDateTime contractTime;
|
||||||
|
|
||||||
@Schema(description = "驳回原因")
|
@Schema(description = "驳回原因")
|
||||||
private String rejectReason;
|
private String rejectReason;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user