| | |
| | | @TableField("id_card") |
| | | private String idCard; |
| | | |
| | | /** 证件类型,业务字典 cardType */ |
| | | @ApiModelProperty(value = "证件类型,业务字典 cardType", example = "") |
| | | @TableField("card_type") |
| | | private String cardType; |
| | | |
| | | /** 岗位性质 */ |
| | | @ApiModelProperty(value = "岗位性质", example = "") |
| | | /** 岗位 */ |
| | | @ApiModelProperty(value = "岗位", example = "") |
| | | @TableField("job_nature") |
| | | private String jobNature; |
| | | |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(value = "create_time",fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | |
| | | /** 生日 */ |
| | | @ApiModelProperty(value = "生日", example = "") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("birthday") |
| | | private Date birthday; |
| | | |
| | | /** 民族 */ |
| | | @ApiModelProperty(value = "民族", example = "") |
| | |
| | | /** 入职时间 */ |
| | | @ApiModelProperty(value = "入职时间", example = "") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(value = "employment_time",fill = FieldFill.INSERT) |
| | | @TableField(value = "employment_time") |
| | | private Date employmentTime; |
| | | |
| | | /** 离职时间 */ |
| | |
| | | @TableField("resignation_time") |
| | | private Date resignationTime; |
| | | |
| | | /** 是离职 1:否 2:是 */ |
| | | @ApiModelProperty(value = "是离职 1:否 2:是", example = "") |
| | | @TableField("resignation_flag") |
| | | private Integer resignationFlag; |
| | | |
| | | } |