| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | /** |
| | | * 生日 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date birthday; |
| | | /** |
| | | * 性别 |
| | |
| | | |
| | | private String work_status; |
| | | |
| | | private String examination_type; |
| | | |
| | | private String examination_mx; |
| | | |
| | | /** |
| | | * 辖区id |
| | | */ |
| | | @ApiModelProperty(value = "辖区id") |
| | | private String jurisdiction; |
| | | |
| | | /** |
| | | * 行政区 |
| | | */ |
| | | @ApiModelProperty(value = "行政区") |
| | | private String district; |
| | | |
| | | /** |
| | | * 审查时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("audit_time") |
| | | private Date auditTime; |
| | | |
| | | /** |
| | | * 身份证号 |
| | | */ |
| | | private String cardid; |
| | | /** |
| | | * 审核状态 0:待审核 1 :审核通过 |
| | | */ |
| | | private String stype; |
| | | |
| | | /** |
| | | * 居住地址 |
| | | */ |
| | | private String address; |
| | | /** |
| | | * 工作地点 |
| | | */ |
| | | private String workaddress; |
| | | /** |
| | | * 工作辖区 |
| | | */ |
| | | private String workjurisdiction; |
| | | private String signals; |
| | | @TableField("job_unit") |
| | | private String jobUnit; |
| | | private String firstlogin; |
| | | private String rolename; |
| | | |
| | | /** |
| | | * 保安员id,关联保安系统 |
| | | */ |
| | | private String securityId; |
| | | |
| | | /** |
| | | * 是否允许登录管理平台 |
| | | */ |
| | | private String isweb; |
| | | /** |
| | | * 所属队伍 |
| | | */ |
| | | private String team; |
| | | |
| | | |
| | | } |