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.
69 lines
1.2 KiB
69 lines
1.2 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_jdry")
|
|
public class LingshanSpecialCrowdDetailJdryEntity extends LingshanSpecialCrowdDetailBaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 有无犯罪史
|
|
*/
|
|
private Integer criminalHistoryFlag;
|
|
|
|
/**
|
|
* 有无复吸史
|
|
*/
|
|
private Integer drugRepetitionFlag;
|
|
|
|
/**
|
|
* 初次发现日期
|
|
*/
|
|
private Date firstDiscoveryDate;
|
|
|
|
/**
|
|
* 管控人姓名
|
|
*/
|
|
private String controllerName;
|
|
|
|
/**
|
|
* 管控人联系方式
|
|
*/
|
|
private String controllerContact;
|
|
|
|
/**
|
|
* 帮扶人姓名
|
|
*/
|
|
private String helperName;
|
|
|
|
/**
|
|
* 帮扶人联系方式
|
|
*/
|
|
private String helperContact;
|
|
|
|
/**
|
|
* 是否脱管
|
|
*/
|
|
private Integer detachedFlag;
|
|
|
|
/**
|
|
* 脱管原因
|
|
*/
|
|
private String detachedReason;
|
|
|
|
}
|
|
|