6 changed files with 139 additions and 14 deletions
@ -0,0 +1,97 @@ |
|||||||
|
package com.biutag.supervision.pojo.vo; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import jakarta.validation.constraints.NotBlank; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
|
||||||
|
@Data |
||||||
|
public class ConfinementExcelVo { |
||||||
|
private String id; |
||||||
|
|
||||||
|
// 姓名
|
||||||
|
private String name; |
||||||
|
//警员id
|
||||||
|
private String policeId; |
||||||
|
// 组织机构id
|
||||||
|
@NotBlank |
||||||
|
private String orgId; |
||||||
|
// 部门名称
|
||||||
|
private String departName; |
||||||
|
//简单部门名称
|
||||||
|
private String departShortName; |
||||||
|
//父级部门名称
|
||||||
|
private String parentDepartShortName; |
||||||
|
// 警号
|
||||||
|
private String empNo; |
||||||
|
// 职位类型
|
||||||
|
private String job; |
||||||
|
|
||||||
|
// 职位类型
|
||||||
|
private String jobType; |
||||||
|
|
||||||
|
// 电话
|
||||||
|
private String phone; |
||||||
|
//出生日期
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime birthTime; |
||||||
|
//
|
||||||
|
// // 手机号
|
||||||
|
// private String mobile;
|
||||||
|
|
||||||
|
// 身份证
|
||||||
|
@NotBlank |
||||||
|
private String idCode; |
||||||
|
//看护单位
|
||||||
|
private String nursingOrgId; |
||||||
|
|
||||||
|
// 看护单位名称
|
||||||
|
private String nursingName; |
||||||
|
//简单部门名称
|
||||||
|
private String nursingShortName; |
||||||
|
//父级部门名称
|
||||||
|
private String parentDepartNursingName; |
||||||
|
//事由
|
||||||
|
private String matter; |
||||||
|
|
||||||
|
//开始时间
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime startTime; |
||||||
|
|
||||||
|
//结束时间
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime endTime; |
||||||
|
|
||||||
|
//禁闭时间
|
||||||
|
private String confinementTime; |
||||||
|
|
||||||
|
//入党时间
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime joinPartyTime; |
||||||
|
|
||||||
|
//参加工作开始时间
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime joinWorkTime; |
||||||
|
//参加公安工作时间
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern="yyyy-MM-dd") |
||||||
|
private LocalDateTime joinPoliceTime; |
||||||
|
//文化程度
|
||||||
|
private String education; |
||||||
|
//是否回访
|
||||||
|
private String isVisit; |
||||||
|
//查处单位
|
||||||
|
private String investigateUnit; |
||||||
|
|
||||||
|
private String remark; |
||||||
|
|
||||||
|
private String role; |
||||||
|
|
||||||
|
private String roleId; |
||||||
|
|
||||||
|
private String userId; |
||||||
|
} |
||||||
Loading…
Reference in new issue