|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -33,16 +35,19 @@ public class SysUserInfo extends BaseBean {
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@Column(name="USER_ID")
|
|
|
|
|
@ApiParam(value ="用户ID" , access ="用户ID")
|
|
|
|
|
private String userId;
|
|
|
|
|
@ApiParam(value ="用户ID" , example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long userId;
|
|
|
|
|
|
|
|
|
|
@Column(name="ORGANIZE_ID")
|
|
|
|
|
@ApiParam(value ="组织ID" , access ="组织ID")
|
|
|
|
|
private String organizeId;
|
|
|
|
|
@ApiParam(value ="组织ID" , example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long organizeId;
|
|
|
|
|
|
|
|
|
|
@Column(name="USER_IMAGE_ID")
|
|
|
|
|
@ApiParam(value ="用户图像" , access ="用户图像")
|
|
|
|
|
private String userImageId;
|
|
|
|
|
@ApiParam(value ="用户图像" , example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long userImageId;
|
|
|
|
|
|
|
|
|
|
@Column(name="USER_SEX")
|
|
|
|
|
@ApiParam(value ="性别(1.男,2.女)" , example ="1" , access ="性别(1.男,2.女)")
|
|
|
|
@ -52,8 +57,8 @@ public class SysUserInfo extends BaseBean {
|
|
|
|
|
@ApiParam(value ="年龄" , example ="1" , access ="年龄")
|
|
|
|
|
private Integer userAge;
|
|
|
|
|
|
|
|
|
|
@Column(name="USER_LOGIN_LASTAAA_DATE_TIME")
|
|
|
|
|
@Column(name="USER_LOGIN_LAST_DATE_TIME")
|
|
|
|
|
@ApiParam(value ="用户最后登录时间" , access ="用户最后登录时间")
|
|
|
|
|
private String userLoginLastaaaDateTime;
|
|
|
|
|
private String userLoginLastDateTime;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|