From 08dae464142bc05ee249519f50f515d29cb71fcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Wed, 3 Sep 2025 12:13:34 +0800 Subject: [PATCH] =?UTF-8?q?feat(ShopDealerApply):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=88=86=E9=94=80=E5=95=86=E7=94=B3=E8=AF=B7=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -增加分销商名称 (dealerName) - 增加分销商编码 (dealerCode) -增加合同时间 (contractTime) --- .../com/gxwebsoft/shop/entity/ShopDealerApply.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java b/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java index f1c61be..7850b41 100644 --- a/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java +++ b/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java @@ -31,6 +31,12 @@ public class ShopDealerApply implements Serializable { @Schema(description = "姓名") private String realName; + @Schema(description = "分销商名称") + private String dealerName; + + @Schema(description = "分销商编码") + private String dealerCode; + @Schema(description = "手机号") private String mobile; @@ -51,6 +57,10 @@ public class ShopDealerApply implements Serializable { @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime auditTime; + @Schema(description = "合同时间") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private LocalDateTime contractTime; + @Schema(description = "驳回原因") private String rejectReason;