| | |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.AllArgsConstructor; |
| | |
| | | |
| | | private static final long serialVersionUID = 681488919320181854L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty("健康码截图") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String colorImage; |
| | | |
| | | @ApiModelProperty("行程码截图") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String travelImage; |
| | | |
| | | @ApiModelProperty("48小时核酸截图") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String acidImage; |
| | | |
| | | @ApiModelProperty("疫苗接种截图") |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED) |
| | | private String vaccinationImage; |
| | | |
| | | @ApiModelProperty("备注") |
| | |
| | | |
| | | @ApiModelProperty("核对状态 0未核对 1已核对") |
| | | private Integer checkStatus; |
| | | |
| | | @ApiModelProperty("是否删除 1是 2否") |
| | | private Integer isDel; |
| | | |
| | | @ApiModelProperty("交通方式") |
| | | private String transport; |
| | | |
| | | @ApiModelProperty("行程信息") |
| | | private String transportInfo; |
| | | |
| | | |
| | | @ApiModelProperty("是否特殊职业 1是 0否") |
| | | private String isSpecialJob; |
| | | |
| | | @ApiModelProperty("户籍地") |
| | | private String registerResidence; |
| | | |
| | | private String isStudent; |
| | | |
| | | private String cardType; |
| | | } |