package org.springblade.modules.accreditation.vo; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import org.springblade.modules.accreditation.entity.AccreditationRecords; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * 制证记录vo * @author zhongrj * @since 2021-11-2 */ @Data public class AccreditationRecordsVo extends AccreditationRecords implements Serializable { /** * 制证人员姓名 */ private String realName; /** * 制证人员组织机构名称 */ private String deptName; /** * 性别 */ private String sex; /** * 制证人员身份证号 */ private String idCardNo; /** * 头像 */ private String avatar; /** * 保安证二维码 */ private String qrCode; /** * 保安证编号 */ private String securityNumber; /** * 年龄 */ private Integer age; /** * 申请ids */ private String ids; /** *开始时间 */ private String startTime; /** * 结束时间 */ private String endTime; /** * 是否有头像 1:有 2:没有上传 */ private Integer isAvatar; /** * 申请人姓名 */ private String applyName; /** * 申请人单位 */ private String applyUnit; /** * 身份证地址 */ private String registered; /** * 是否制证 6:是 7:否 */ private Integer userType; private Long deptId; private String jurisdiction; }