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
|
*/
|
@Data
|
@TableName("z_health_base")
|
public class ZHealthBase implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
private Long uid; // 所属用户id
|
|
private String name; // 姓名
|
|
private Integer sex; // 性别,1:男,0:女
|
|
private String educationLevel; // 文化程度
|
|
private String work; // 职业
|
|
private String phone; // 电话
|
|
private String email; // 电子邮件
|
|
private String address; // 住址
|
|
private String blood; // 血型(json数组)
|
|
private String allergy; // 过敏史(json数组)
|
|
private String geneticDisease; // 遗传病史(json数组)
|
|
private String medicine; // 常用药物
|
|
private String baseDisease; // 目前基础病
|
}
|