package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 年度健康表第一次需要录入的信息
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_year_health")
|
@Data
|
public class ZYearHealth implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 年度健康表持有者id
|
*/
|
private Long uid;
|
|
/**
|
* 生活习惯
|
*/
|
private String lifeHabit;
|
|
/**
|
* 诊治情况
|
*/
|
private String treatment;
|
|
/**
|
* 家族病史
|
*/
|
private String familyDisease;
|
|
/**
|
* 现病史
|
*/
|
private String nowDisease;
|
|
/**
|
* 疾病的发生
|
*/
|
private String diseaseHappen;
|
|
/**
|
* 疾病的发展
|
*/
|
private String diseaseDevelop;
|
|
/**
|
* 疾病的治疗
|
*/
|
private String diseaseTreat;
|
|
/**
|
* 疾病的转归
|
*/
|
private String diseaseOutcome;
|
|
}
|