package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* @auther txb
|
* @create 2021-08-10 15:58:23
|
* @describe 实体类
|
*/
|
|
@Data
|
@TableName("com_rehabilitation_population")
|
@EncryptDecryptClass
|
public class ComRehabilitationPopulationDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.INPUT)
|
private Long id;
|
|
/**
|
* 人口id
|
*/
|
private Long populationId;
|
|
/**
|
* 街道id
|
*/
|
private Long streetId;
|
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
/**
|
* 名字
|
*/
|
private String name;
|
|
/**
|
* 身份证号码
|
*/
|
@EncryptDecryptField
|
private String cardNo;
|
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
|
/**
|
* 与人员关系
|
*/
|
private Integer patientRelation;
|
|
/**
|
* 列管原因及类型
|
*/
|
private String rehabReasonAndType;
|
|
/**
|
* 是否列管(1.是 0.否)
|
*/
|
private Integer isRehab;
|
|
/**
|
* 是否累惯犯(1.是 0.否)
|
*/
|
private Integer isRecidivist;
|
|
/**
|
* 原判刑期
|
*/
|
private String originalTerm;
|
|
/**
|
* 服刑日期
|
*/
|
private Date sentenceBegin;
|
|
/**
|
* 原罪名
|
*/
|
private String originalCharge;
|
|
/**
|
* 释放日期
|
*/
|
private Date sentenceEnd;
|
|
/**
|
* 服刑场所
|
*/
|
private String sentencePlace;
|
|
/**
|
* 危险性评估
|
*/
|
private String riskAssessment;
|
|
/**
|
* 衔接日期
|
*/
|
private Date joinDate;
|
|
/**
|
* 衔接情况
|
*/
|
private String joinSituation;
|
|
/**
|
* 是否重新犯罪(1.是 0.否)
|
*/
|
private Integer isAgainCrime;
|
|
/**
|
* 重新犯罪名称
|
*/
|
private String againCrimeName;
|
|
/**
|
* 安置情况
|
*/
|
private String placeSituation;
|
|
/**
|
* 安置日期
|
*/
|
private Date placeDate;
|
|
/**
|
* 未安置原因
|
*/
|
private String notPlaceReason;
|
|
/**
|
* 帮教开始
|
*/
|
private Date helpBegin;
|
|
/**
|
* 帮教结束
|
*/
|
private Date helpEnd;
|
|
/**
|
* 帮教情况
|
*/
|
private String helpSituation;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/**
|
* 创建用户
|
*/
|
private Long createBy;
|
|
/**
|
* 修改时间
|
*/
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
private Date updateAt;
|
|
/**
|
* 修改用户
|
*/
|
private Long updateBy;
|
|
@Override
|
public String toString() {
|
return "ComRehabilitationPopulationDO{" +
|
"id=" + id +
|
", populationId=" + populationId +
|
", streetId=" + streetId +
|
", communityId=" + communityId +
|
", name=" + name +
|
", cardNo=" + cardNo +
|
", phone=" + phone +
|
", patientRelation=" + patientRelation +
|
", rehabReasonAndType=" + rehabReasonAndType +
|
", isRehab=" + isRehab +
|
", isRecidivist=" + isRecidivist +
|
", originalTerm=" + originalTerm +
|
", sentenceBegin=" + sentenceBegin +
|
", originalCharge=" + originalCharge +
|
", sentenceEnd=" + sentenceEnd +
|
", sentencePlace=" + sentencePlace +
|
", riskAssessment=" + riskAssessment +
|
", joinDate=" + joinDate +
|
", joinSituation=" + joinSituation +
|
", isAgainCrime=" + isAgainCrime +
|
", againCrimeName=" + againCrimeName +
|
", placeSituation=" + placeSituation +
|
", placeDate=" + placeDate +
|
", notPlaceReason=" + notPlaceReason +
|
", helpBegin=" + helpBegin +
|
", helpEnd=" + helpEnd +
|
", helpSituation=" + helpSituation +
|
", remark=" + remark +
|
", createAt=" + createAt +
|
", createBy=" + createBy +
|
", updateAt=" + updateAt +
|
", updateBy=" + updateBy +
|
"}";
|
}
|
}
|