feat(user): 新增用户积分字段

- SystemUsers 实体添加 points 字段及注解
- SystemUsersVO 视图对象同步 points 字段
- 生产环境配置切换为线上数据库地址
This commit is contained in:
2026-03-02 16:14:23 +08:00
parent e75fae2ad7
commit 6839ee7de3
3 changed files with 8 additions and 3 deletions

View File

@@ -195,4 +195,8 @@ public class SystemUsers {
@TableField(value = "web_ai")
@ApiModelProperty(value = "能否登录智能回复客户端")
private Byte webAi;
@TableField(value = "points")
@ApiModelProperty(value = "用户积分")
private Integer points;
}

View File

@@ -50,4 +50,5 @@ public class SystemUsersVO {
private Byte webAi;
private Integer points;
}