package com.smartor.domain; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
import org.apache.commons.lang3.builder.ToStringBuilder; 
 | 
import org.apache.commons.lang3.builder.ToStringStyle; 
 | 
  
 | 
import java.util.ArrayList; 
 | 
import java.util.Date; 
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 患者档案对象 pat_archive 
 | 
 * 
 | 
 * @author smartor 
 | 
 * @date 2023-03-04 
 | 
 */ 
 | 
@ApiModel(value = "PatArchiveVO", description = "患者档案对象") 
 | 
@Data 
 | 
public class PatArchiveVO extends BaseEntity { 
 | 
  
 | 
    /** 
 | 
     * 自增ID 
 | 
     */ 
 | 
    @ApiModelProperty("自增ID") 
 | 
    private Long id; 
 | 
  
 | 
    /** 
 | 
     * 姓名 
 | 
     */ 
 | 
    @ApiModelProperty("姓名") 
 | 
    @Excel(name = " 姓名 ") 
 | 
    private String name; 
 | 
  
 | 
    /** 
 | 
     * 性别  1:男 2:女 
 | 
     */ 
 | 
    @ApiModelProperty("性别") 
 | 
    @Excel(name = " 性别 ") 
 | 
    private Long sex; 
 | 
  
 | 
    /** 
 | 
     * 证件类型 
 | 
     */ 
 | 
    @ApiModelProperty("证件类型") 
 | 
    @Excel(name = " 证件类型 ") 
 | 
    private String idcardtype; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 证件号码 
 | 
     */ 
 | 
    @ApiModelProperty("籍贯") 
 | 
    @Excel(name = " 籍贯 ") 
 | 
    private String nativePlace; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 证件号码 
 | 
     */ 
 | 
    @ApiModelProperty("居住地") 
 | 
    @Excel(name = " 居住地 ") 
 | 
    private String placeOfResidence; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 证件号码 
 | 
     */ 
 | 
    @ApiModelProperty("出生地") 
 | 
    @Excel(name = " 出生地 ") 
 | 
    private String birthplace; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 证件号码 
 | 
     */ 
 | 
    @ApiModelProperty("证件号码") 
 | 
    @Excel(name = " 证件号码 ") 
 | 
    private String idcardno; 
 | 
  
 | 
    /** 
 | 
     * 生日 
 | 
     */ 
 | 
    @ApiModelProperty("生日") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date birthdate; 
 | 
  
 | 
    /** 
 | 
     * 入院时间 
 | 
     */ 
 | 
    @ApiModelProperty("入院时间") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date inhosptime; 
 | 
  
 | 
    /** 
 | 
     * 年龄 
 | 
     */ 
 | 
    @ApiModelProperty("年龄") 
 | 
    @Excel(name = " 年龄 ") 
 | 
    private Long age; 
 | 
  
 | 
    /** 
 | 
     * 来源 
 | 
     */ 
 | 
    @ApiModelProperty("来源") 
 | 
    @Excel(name = " 来源 ") 
 | 
    private Long sourcefrom; 
 | 
  
 | 
    /** 
 | 
     * 建档时间 
 | 
     */ 
 | 
    @ApiModelProperty("建档时间") 
 | 
    @Excel(name = " 建档时间 ") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    private Date archivetime; 
 | 
  
 | 
    /** 
 | 
     * 建档人 
 | 
     */ 
 | 
    @ApiModelProperty("建档人") 
 | 
    @Excel(name = " 建档人 ") 
 | 
    private String archiveby; 
 | 
  
 | 
    /** 
 | 
     * 手机号码 
 | 
     */ 
 | 
    @ApiModelProperty("手机号码") 
 | 
    @Excel(name = " 手机号码 ") 
 | 
    private String telcode; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 亲属号码 
 | 
     */ 
 | 
    @ApiModelProperty("亲属号码") 
 | 
    @Excel(name = " 亲属号码 ") 
 | 
    private String relativetelcode; 
 | 
  
 | 
    /** 
 | 
     * 民族 
 | 
     */ 
 | 
    @ApiModelProperty("民族") 
 | 
    @Excel(name = " 民族 ") 
 | 
    private String nation; 
 | 
  
 | 
    /** 
 | 
     * 机构ID 
 | 
     */ 
 | 
    @ApiModelProperty("机构ID") 
 | 
    @Excel(name = " 机构ID ") 
 | 
    private String orgid; 
 | 
  
 | 
    /** 
 | 
     * 微信openid 
 | 
     */ 
 | 
    @ApiModelProperty("微信openid") 
 | 
    @Excel(name = " 微信openid ") 
 | 
    private String openid; 
 | 
  
 | 
    /** 
 | 
     * 删除标记 
 | 
     */ 
 | 
    @ApiModelProperty("删除标记") 
 | 
    private String delFlag; 
 | 
  
 | 
    /** 
 | 
     * 上传标记 
 | 
     */ 
 | 
    @ApiModelProperty("上传标记") 
 | 
    private Long isupload; 
 | 
  
 | 
    /** 
 | 
     * 上传时间 
 | 
     */ 
 | 
    @ApiModelProperty("上传时间") 
 | 
    private Date uploadTime; 
 | 
  
 | 
    /** 
 | 
     * 标签 
 | 
     */ 
 | 
    @ApiModelProperty("标签") 
 | 
    @Excel(name = " 标签 ", cellType = Excel.ColumnType.STRING) 
 | 
    private String tag; 
 | 
  
 | 
    /** 
 | 
     * 标签 
 | 
     */ 
 | 
    @ApiModelProperty("标签id") 
 | 
    @Excel(name = " 标签id ", cellType = Excel.ColumnType.STRING) 
 | 
    private Long tagid; 
 | 
  
 | 
    @ApiModelProperty("标签集合") 
 | 
    private List<PatArchivetag> tagList; 
 | 
  
 | 
    /** 
 | 
     * 标签 
 | 
     */ 
 | 
    @ApiModelProperty("患者类型") 
 | 
    @Excel(name = " 患者类型 ", cellType = Excel.ColumnType.STRING) 
 | 
    private String pattype; 
 | 
  
 | 
    /** 
 | 
     * 钉钉号 
 | 
     */ 
 | 
    @ApiModelProperty("钉钉号") 
 | 
    @Excel(name = " 钉钉号 ") 
 | 
    private String dduserid; 
 | 
  
 | 
    /** 
 | 
     * 钉钉号 
 | 
     */ 
 | 
    @ApiModelProperty("科室") 
 | 
    @Excel(name = " 科室 ") 
 | 
    private String dept; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 服务标识:0,需要,1,不需要 
 | 
     */ 
 | 
    @ApiModelProperty("服务标识:0,需要,1,不需要") 
 | 
    @Excel(name = " 服务标识:0,需要,1,不需要 ") 
 | 
    private String notrequiredFlag; 
 | 
  
 | 
    /** 
 | 
     * 不要服务的原因 
 | 
     */ 
 | 
    @ApiModelProperty("不要服务的原因") 
 | 
    @Excel(name = " 不要服务的原因 ") 
 | 
    private String notrequiredreason; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 不要服务的操作医生 
 | 
     */ 
 | 
    @ApiModelProperty("不要服务的操作医生") 
 | 
    private String filterDrname; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 不要服务的操作医生 
 | 
     */ 
 | 
    @ApiModelProperty("不要服务的操作医生编码") 
 | 
    private String filterDrcode; 
 | 
  
 | 
    /** 
 | 
     * 钉钉号 
 | 
     */ 
 | 
    @ApiModelProperty("科室") 
 | 
    @Excel(name = " 科室 ") 
 | 
    private String bedNo; 
 | 
  
 | 
    /** 
 | 
     * 会员属性:0非会员,1一般会员、2重要会员 
 | 
     */ 
 | 
    @ApiModelProperty("会员属性:0非会员,1一般会员、2重要会员") 
 | 
    @Excel(name = " 会员属性:0非会员,1一般会员、2重要会员 ") 
 | 
    private String viptype; 
 | 
  
 | 
    @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除") 
 | 
    private Integer isoperation; 
 | 
  
 | 
  
 | 
    @ApiModelProperty("出院病区名称") 
 | 
    private String leavehospitaldistrictname; 
 | 
  
 | 
    @ApiModelProperty("出院病区编号") 
 | 
    private String leavehospitaldistrictcode; 
 | 
  
 | 
    /** 
 | 
     * 出院方式序号 
 | 
     */ 
 | 
    @ApiModelProperty("出院方式序号") 
 | 
    @Excel(name = " 出院方式序号 ") 
 | 
    private String outWayId; 
 | 
  
 | 
    /** 
 | 
     * 出院方式名称 
 | 
     */ 
 | 
    @ApiModelProperty("出院方式名称") 
 | 
    @Excel(name = " 出院方式名称 ") 
 | 
    private String outWayName; 
 | 
    @ApiModelProperty("照护场所:1家庭   2养老机构") 
 | 
    @Excel(name = " 照护场所:1家庭   2养老机构 ") 
 | 
    private String careFacilities; 
 | 
  
 | 
    @ApiModelProperty("照护场所:1家庭   2养老机构") 
 | 
    @Excel(name = " 照护场所:1家庭   2养老机构 ") 
 | 
    private String casePath; 
 | 
  
 | 
    @ApiModelProperty("受教育程度") 
 | 
    @Excel(name = "受教育程度") 
 | 
    private String degreeOfEducation; 
 | 
  
 | 
    @ApiModelProperty("婚姻状况") 
 | 
    @Excel(name = "婚姻状况") 
 | 
    private String maritalStatus; 
 | 
  
 | 
    @ApiModelProperty("家庭人均收入") 
 | 
    @Excel(name = "家庭人均收入") 
 | 
    private String income; 
 | 
  
 | 
    @ApiModelProperty("医保类型") 
 | 
    @Excel(name = "医保类型") 
 | 
    private String medicareType; 
 | 
  
 | 
    @ApiModelProperty("主要照护人") 
 | 
    @Excel(name = "主要照护人") 
 | 
    private String carePerson; 
 | 
  
 | 
    @ApiModelProperty("主要照护人年龄") 
 | 
    @Excel(name = "主要照护人年龄") 
 | 
    private String casePersonAge; 
 | 
  
 | 
} 
 |