| | |
| | | * 是否缴社保 |
| | | */ |
| | | private String soil; |
| | | |
| | | |
| | | /** |
| | | * 健康状态 0:健康 1:良好 2:一般 3:较差 |
| | | */ |
| | | private String healstats; |
| | | |
| | | /** |
| | | * 发证日期(保安证) |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @TableField("paper_time") |
| | | private Date paperTime; |
| | | |
| | | /** |
| | | * 离职原因 |
| | | */ |
| | | @TableField("reason_for_leav") |
| | | private String reasonForLeav; |
| | | |
| | | private String holdv; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date holdvtime; |
| | | |
| | | |
| | | /** |
| | | * 是否缴纳保险 0:是 1:否 |
| | | */ |
| | | private Integer insurance; |
| | | |
| | | } |