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

@ -74,10 +74,14 @@ public class SysUser implements Serializable
private String avatar; private String avatar;
/** 密码 */ /** 密码 */
@JsonIgnore
@JsonProperty @JsonProperty
private String password; private String password;
@JsonIgnore
public String getPassword() {
return password;
}
/** 盐加密 */ /** 盐加密 */
private String salt; private String salt;