This commit is contained in:
疯狂的狮子li 2021-04-22 09:50:03 +08:00
commit 5b4e9ef4db
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;