feat(ShopDealerUser): 添加备注字段
在 ShopDealerUser 实体类中添加了备注字段 comments,用于存储额外的备注信息。这个字段将有助于记录与经销商用户相关的附加信息,提高系统的可扩展性和灵活性。
This commit is contained in:
@@ -62,6 +62,9 @@ public class ShopDealerUser implements Serializable {
|
|||||||
@Schema(description = "专属二维码")
|
@Schema(description = "专属二维码")
|
||||||
private String qrcode;
|
private String qrcode;
|
||||||
|
|
||||||
|
@Schema(description = "备注")
|
||||||
|
private String comments;
|
||||||
|
|
||||||
@Schema(description = "排序号")
|
@Schema(description = "排序号")
|
||||||
private Integer sortNumber;
|
private Integer sortNumber;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user