添加销售同时创建账号

This commit is contained in:
zhonghua1
2025-12-20 22:58:45 +08:00
parent eb4b9d2805
commit 086a4c8baa
3 changed files with 12 additions and 2 deletions

View File

@@ -114,6 +114,11 @@ public class DeviceManagement implements Serializable {
@TableField("sales_phone")
private String salesPhone;
@Schema(description = "登录密码")
@TableField("password")
private String password;
@Schema(description = "创建时间")
@TableField("create_time")
private LocalDateTime createTime;

View File

@@ -98,5 +98,8 @@ public class SalesManagement implements Serializable {
@TableField("update_time")
private LocalDateTime updateTime;
@Schema(description = "密码(不存储在数据库中)")
@TableField(exist = false)
private String password;
}