You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.6 KiB
74 lines
1.6 KiB
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 灵山-特殊人群-精障患者
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2023-04-18
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("lingshan_special_crowd_detail_jzhz")
|
|
public class LingshanSpecialCrowdDetailJzhzEntity extends LingshanSpecialCrowdDetailBaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 有无肇事肇祸史
|
|
*/
|
|
private Integer causeTroubleHistoryFlag;
|
|
|
|
/**
|
|
* 肇事肇祸次数
|
|
*/
|
|
private Integer causeTroubleTimes;
|
|
|
|
/**
|
|
* 目前诊断类型。1精神分裂症,2分裂情感性障碍,3持久的妄想性障碍(偏执性精神病),4双相(情感)障碍,5癫痫所致精神障碍,6精神发育迟滞伴发精神障碍,7重度抑郁发作,8精神活性物质所致精神障碍,9其他
|
|
*/
|
|
private Integer currentDiagnosis;
|
|
|
|
/**
|
|
* 危险性评估等级。0,1,2,3,4,5
|
|
*/
|
|
private Integer dangerousClass;
|
|
|
|
/**
|
|
* 是否具备外出能力
|
|
*/
|
|
private Integer canGoOutFlag;
|
|
|
|
/**
|
|
* 是否有暴力倾向
|
|
*/
|
|
private Integer violenceFlag;
|
|
|
|
/**
|
|
* 是否落实监管补助
|
|
*/
|
|
private Integer allowanceFlag;
|
|
|
|
/**
|
|
* 是否纳入低保
|
|
*/
|
|
private Integer subsistenceFlag;
|
|
|
|
/**
|
|
* 监护人姓名
|
|
*/
|
|
private String guardianName;
|
|
|
|
/**
|
|
* 监护人联系方式
|
|
*/
|
|
private String guardianContact;
|
|
|
|
}
|
|
|