用户头像更新

This commit is contained in:
huangzj
2023-08-10 18:50:58 +08:00
parent 855c8d98d6
commit dad081905c
8 changed files with 117 additions and 3 deletions

View File

@@ -468,6 +468,8 @@ public enum DicDataEnum {
USER_MANUAL("使用手册","User_Manual"),
USER_AGREEMENT("用户协议","User_Agreement"),
COMPANY_PROFILE("公司简介","Company_Profile"),
PERSONAL_INFOR_PROTECT("个人信息保护政策","Personal_Infor_Protect"),
/**
* app设备事件类型权限转移数据恢复
*/

View File

@@ -31,24 +31,24 @@ public class DictTreeParam {
* 名称
*/
@ApiModelProperty(value = "名称")
@NotBlank(message = ValidMessage.NAME_NOT_BLANK)
private String name;
/**
* 编码
*/
@TableField(value = "编码")
@NotBlank(message = ValidMessage.CODE_NOT_BLANK)
private String code;
/**
* 排序
*/
@TableField(value = "sort")
private Integer sort;
/**
* 描述
*/
@TableField(value = "remark")
private String remark;