|
楼主 |
发表于 2019-6-10 22:42:27
|
显示全部楼层
@Data
@TableName("edu_user")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="edu_user对象", description="学员管理")
public class EduUser {
/**职员id*/
@TableId(type = IdType.UUID)
@ApiModelProperty(value = "职员id")
private java.lang.String id;
/**工资号*/
@Excel(name = "工资号", width = 15)
@ApiModelProperty(value = "工资号")
private java.lang.String userName;
/**密码*/
@Excel(name = "密码", width = 15)
@ApiModelProperty(value = "密码")
private java.lang.String password;
/**姓名*/
@Excel(name = "姓名", width = 15)
@ApiModelProperty(value = "姓名")
private java.lang.String showName;
/**拼音码*/
@Excel(name = "拼音码", width = 15)
@ApiModelProperty(value = "拼音码")
private java.lang.String realname;
/**民族*/
@Excel(name = "民族", width = 15)
@ApiModelProperty(value = "民族")
private java.lang.String nation;
/**出生年月*/
@Excel(name = "出生年月", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "出生年月")
private java.util.Date birthday;
/**籍贯*/
@Excel(name = "籍贯", width = 15)
@ApiModelProperty(value = "籍贯")
private java.lang.String nativePlace;
/**手机号*/
@Excel(name = "手机号", width = 15)
@ApiModelProperty(value = "手机号")
private java.lang.String mobile;
/**参加工作时间*/
@Excel(name = "参加工作时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "参加工作时间")
private java.util.Date workDate;
/**任职时间*/
@Excel(name = "任职时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "任职时间")
private java.util.Date positionTime;
/**政治面貌*/
@Excel(name = "政治面貌", width = 15)
@ApiModelProperty(value = "政治面貌")
private java.lang.String political;
/**文化程度*/
@Excel(name = "文化程度", width = 15)
@ApiModelProperty(value = "文化程度")
private java.lang.String education;
/**年龄*/
@Excel(name = "年龄", width = 15)
@ApiModelProperty(value = "年龄")
private java.lang.Integer age;
/**性别 1男 2女*/
@Excel(name = "性别", width = 15,dicCode="sex")
@Dict(dicCode = "sex")
@ApiModelProperty(value = "性别 1男 2女")
private java.lang.Integer sex;
/**身份证号*/
@Excel(name = "身份证号", width = 15)
@ApiModelProperty(value = "身份证号")
private java.lang.String idcardno;
/**省*/
@Excel(name = "省", width = 15)
@ApiModelProperty(value = "省")
private java.lang.Integer province;
/**市*/
@Excel(name = "市", width = 15)
@ApiModelProperty(value = "市")
private java.lang.Integer city;
/**区*/
@Excel(name = "区", width = 15)
@ApiModelProperty(value = "区")
private java.lang.Integer area;
/**学校*/
@Excel(name = "学校", width = 15)
@ApiModelProperty(value = "学校")
private java.lang.String school;
/**专业*/
@Excel(name = "专业", width = 15)
@ApiModelProperty(value = "专业")
private java.lang.String subject;
/**工作证号*/
@Excel(name = "工作证号", width = 15)
@ApiModelProperty(value = "工作证号")
private java.lang.String idWork;
/**婚姻状况*/
@Excel(name = "婚姻状况", width = 15)
@ApiModelProperty(value = "婚姻状况")
private java.lang.String marital;
/**毕业学校*/
@Excel(name = "毕业学校", width = 15)
@ApiModelProperty(value = "毕业学校")
private java.lang.String graduate;
/**所学专业*/
@Excel(name = "所学专业", width = 15)
@ApiModelProperty(value = "所学专业")
private java.lang.String major;
/**工作地点*/
@Excel(name = "工作地点", width = 15)
@ApiModelProperty(value = "工作地点")
private java.lang.String workAddress;
/**职务级别*/
@Excel(name = "职务级别", width = 15)
@ApiModelProperty(value = "职务级别")
private java.lang.String jobLevel;
/**创建人id*/
@Excel(name = "创建人id", width = 15)
@ApiModelProperty(value = "创建人id")
private java.lang.String createBy;
/**创建时间*/
@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "创建时间")
private java.util.Date createTime;
/**修改时间*/
@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private java.util.Date updateTime;
/**修改人id*/
@Excel(name = "修改人id", width = 15)
@ApiModelProperty(value = "修改人id")
private java.lang.String updateBy;
}
|
|