From ad23922a7c384adb5b406b0a148376e7ee8fc48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 9 Apr 2026 13:59:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(entity):=20=E6=B7=BB=E5=8A=A0=E6=8E=A5?= =?UTF-8?q?=E5=BE=85=E4=BA=BA=E7=9B=B8=E5=85=B3=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增receptionistId字段,记录接待人用户ID - 新增receptionistName字段,记录接待人名称 - 字段均添加了相应的Schema描述信息feat(entity): 新增接待人用户ID及名称字段 - 在ShopDealerApply实体中添加receptionistId字段表示接待人用户ID - 添加receptionistName字段用于存储接待人名称 - 对新增字段增加Swagger注解描述信息 - 保持原有房号和佣金比例字段不变 --- .../java/com/gxwebsoft/shop/entity/ShopDealerApply.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java b/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java index e5234d5..3ea7ec1 100644 --- a/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java +++ b/src/main/java/com/gxwebsoft/shop/entity/ShopDealerApply.java @@ -72,6 +72,12 @@ public class ShopDealerApply implements Serializable { @Schema(description = "房号") private String roomNumber; + @Schema(description = "接待人用户ID") + private Integer receptionistId; + + @Schema(description = "接待人名称") + private String receptionistName; + @Schema(description = "佣金比例") @TableField(exist = false) private BigDecimal rate;