|
|
@ -1,6 +1,8 @@
|
|
|
|
package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
@ -86,6 +88,7 @@ public class SysUser extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "USER_STATUS")
|
|
|
|
@Column(name = "USER_STATUS")
|
|
|
|
@ApiParam(value = "账号状态(枚举:1正常,2冻结使用,3账号异常,4离职,5服务到期)", example = "-1")
|
|
|
|
@ApiParam(value = "账号状态(枚举:1正常,2冻结使用,3账号异常,4离职,5服务到期)", example = "-1")
|
|
|
|
|
|
|
|
@AnnoOutputColumn(refClass = CommonEnumUtil.USER_STATUS.class,refForeignKey = "value", value = "description")
|
|
|
|
private Integer userStatus;
|
|
|
|
private Integer userStatus;
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "USER_LOGIN_NUM")
|
|
|
|
@Column(name = "USER_LOGIN_NUM")
|
|
|
|