修改用户密码获取失败

This commit is contained in:
再见亦是路人 2021-04-21 15:56:00 +08:00 committed by Gitee
parent db43f678d8
commit a4b71278c0
1 changed files with 6 additions and 2 deletions

View File

@ -73,11 +73,15 @@ public class SysUser implements Serializable
/** 用户头像 */
private String avatar;
/** 密码 */
@JsonIgnore
/** 密码 */
@JsonProperty
private String password;
@JsonIgnore
public String getPassword() {
return password;
}
/** 盐加密 */
private String salt;