| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | private Long id; |
| | | |
| | | /** |
| | | * 派遣单位名称 |
| | | */ |
| | | * 派遣单位名称 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * 保安公司 tenant_id |
| | | */ |
| | | @TableField("tenant_id") |
| | | private String tenantId; |
| | | * 部门id |
| | | */ |
| | | @TableField("dept_id") |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * 联系人 |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 行政区id |
| | | */ |
| | | private Long jurisdiction; |
| | | |
| | | |
| | | } |