Commit 88b351ce authored by 赵啸非's avatar 赵啸非

添加目录字段

parent 84a601e9
package com.mortals.xhx.base.system.user.model; package com.mortals.xhx.base.system.user.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.mortals.framework.ap.SysConstains; import com.mortals.framework.ap.SysConstains;
import com.mortals.framework.service.IUser; import com.mortals.framework.service.IUser;
import com.mortals.xhx.base.system.user.model.vo.UserVo; import com.mortals.xhx.base.system.user.model.vo.UserVo;
...@@ -22,6 +23,9 @@ public class UserEntity extends UserVo implements IUser { ...@@ -22,6 +23,9 @@ public class UserEntity extends UserVo implements IUser {
/** /**
* 登录密码,使用md5双次加密 * 登录密码,使用md5双次加密
*/ */
@JsonProperty(
access = JsonProperty.Access.WRITE_ONLY
)
private String loginPwd; private String loginPwd;
/** /**
* 登录限制地址,多个IP地址用逗号分隔,可以使用IP段匹配,如:172.17.*非空:则只能该值内的IP可以登录 * 登录限制地址,多个IP地址用逗号分隔,可以使用IP段匹配,如:172.17.*非空:则只能该值内的IP可以登录
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment