| | |
| | | */ |
| | | @ApiModelProperty(value = "姓名") |
| | | private String name; |
| | | |
| | | /** |
| | | * 岗位 |
| | | */ |
| | | @ApiModelProperty(value = "岗位") |
| | | private String post; |
| | | |
| | | /** |
| | | * 部门 |
| | | */ |
| | | @ApiModelProperty(value = "部门") |
| | | private String department; |
| | | |
| | | /** |
| | | * 岗位职责 |
| | | */ |
| | | @ApiModelProperty(value = "岗位职责") |
| | | private String responsibilities; |
| | | |
| | | /** |
| | | * 入职时间 |
| | | */ |
| | | @ApiModelProperty(value = "入职时间") |
| | | @TableField("entryTime") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date entrytime; |
| | | |
| | | /** |
| | | * 离职时间 |
| | | */ |
| | | @ApiModelProperty(value = "离职时间") |
| | | @TableField("departureTime") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date departuretime; |
| | | |
| | | /** |
| | | * 离职原因 |
| | | */ |
| | | @ApiModelProperty(value = "离职原因") |
| | | private String leaving; |
| | | |
| | | /** |
| | | * 身份证号 |
| | | */ |
| | | @ApiModelProperty(value = "身份证号") |
| | | @TableField("cardId") |
| | | private String cardid; |
| | | |
| | | /** |
| | | * 公司名称 |
| | | */ |
| | | @ApiModelProperty(value = "公司名称") |
| | | private String companyname; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 保安员id |
| | | */ |
| | | @TableField("securityId") |
| | | private String securityid; |
| | | |
| | | |
| | | } |