liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActAcidDangerMember.java
@@ -32,7 +32,7 @@
    private static final long serialVersionUID = 889636932941876579L;
    @TableId(type = IdType.AUTO)
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
@@ -89,4 +89,27 @@
    @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 = "核酸呈阳性";
    }
}