101captain
2021-09-22 1775bb71f952106c58657cf02891cbe2a286c8f8
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComEldersAuthHistoryRecordDO.java
@@ -68,4 +68,76 @@
     */
    private Long communityId;
    /**
     * 高龄人口id
     */
    private Long elderliesId;
    /**
     * 认证期数
     */
    private String authPeriod;
    /**
     * 提交用户id
     */
    private Long submitUserId;
    /**
     * 认证方式(1.视频认证 2.人脸认证 3.线下认证)
     */
    private Integer authMethod;
    /**
     * 人脸核验结果数据
     */
    private String verificationResult;
    /**
     * 标记
     */
    private String mark;
    /**
     * 是否健在
     */
    private Integer isAlive;
    /**
     * 人员类别(1.80-89周岁 2.90-99周岁 3.100周岁(含)以上)
     */
    private Integer personnelCategory;
    /**
     * 性别(1.男 2.女 3.其他)
     */
    private Integer sex;
    /**
     * 手机号
     */
    private String phone;
    /**
     * 认证时间
     */
    private Date authDate;
    /**
     * 审核时间
     */
    private Date approvalDate;
    /**
     * 审核id
     */
    private Long approverId;
    /**
     * 本月是否已认证(1.是 2.否)
     */
    public interface isAuth{
        int yes = 1;
        int no = 2;
    }
}