package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
|
|
import lombok.Data;
|
|
/**
|
* 高龄老人库实体类
|
*
|
* @author cedoo email:cedoo(a)qq.com
|
* @version 1.0
|
* @since 1.0
|
* @date 2021-06-09
|
*/
|
@Data
|
@TableName("com_elders_auth_elderly")
|
@EncryptDecryptClass
|
public class ComEldersAuthElderlyDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id 列: id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 名称 列: name
|
*/
|
private String name;
|
/**
|
* 身份证号码 列: id_card
|
*/
|
@EncryptDecryptField
|
private String idCard;
|
/**
|
* 出生年月 列: birthday
|
*/
|
private String birthday;
|
/**
|
* 人员类别(1.80-89周岁 2.90-99周岁 3.100周岁(含)以上) 列: level
|
*/
|
private Integer level;
|
/**
|
* 户籍地 列: domicile
|
*/
|
private String domicile;
|
/**
|
* 社区id 列: community_id
|
*/
|
private Long communityId;
|
/**
|
* 是否健在(1.是 2.否) 列: is_exist
|
*/
|
private Integer isExist;
|
/**
|
* 是否办理高龄津贴(1.是 2.否) 列: is_big_age
|
*/
|
private Integer isBigAge;
|
/**
|
* 创建时间 列: create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
/**
|
* 创建用户 列: create_by
|
*/
|
private Long createBy;
|
/**
|
* 修改时间 列: update_at
|
*/
|
@TableField(fill = FieldFill.UPDATE)
|
private Date updateAt;
|
/**
|
* 修改用户 列: update_by
|
*/
|
private Long updateBy;
|
|
/**
|
* 是否健在(1.是 2.否) 列: is_exist
|
*/
|
public interface isExist{
|
int yes=1;
|
int no=2;
|
}
|
/**
|
* 是否办理高龄津贴(1.是 2.否) 列: is_exist
|
*/
|
public interface isBigAge{
|
int yes=1;
|
int no=2;
|
}
|
|
}
|