| | |
| | | |
| | | private static final long serialVersionUID = 889636932941876579L; |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value = "身份证") |
| | | private String idCard; |
| | | |
| | | /** |
| | | * 绑定单位 |
| | | */ |
| | | @ApiModelProperty(value = "绑定单位") |
| | | private String relationName; |
| | | |
| | | /** |
| | | * 风险类别 |
| | | */ |
| | | @ApiModelProperty(value = "风险类别") |
| | | private String riskType; |
| | | |
| | | @ApiModelProperty(value = "是否删除 1是 0否") |
| | | private Integer isDel; |
| | | |
| | | public interface RiskType { |
| | | String COLOR = "红码或黄码"; |
| | | String STAR= "行程卡带星"; |
| | | String HIGH = "中高风险区返回"; |
| | | String OUT = "境外返回"; |
| | | String TEST = "核酸呈阳性"; |
| | | } |
| | | |
| | | } |