liusheng
2024-08-28 bedd0a1cef215538df64470df6b8d4a022189136
smartor/src/main/java/com/smartor/domain/PatArchiveVO.java
@@ -19,15 +19,14 @@
 * @author smartor
 * @date 2023-03-04
 */
@ApiModel(value = "PatArchiveVO", description = "患者档案对象")
@ApiModel(value = "PatArchiveVO" , description = "患者档案对象")
@Data
public class PatArchiveVO extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /**
     * 自增ID
     */
    @ApiModelProperty(value = "自增ID")
    @ApiModelProperty("自增ID")
    private Long id;
    /**
@@ -45,26 +44,19 @@
    private Long sex;
    /**
     * 证件类型
     */
    @ApiModelProperty("证件类型")
    @Excel(name = " 证件类型 ")
    private String idcardtype;
    /**
     * 证件号码
     */
    @ApiModelProperty("证件号码")
    @Excel(name = " 证件号码 ")
    private String idcardno;
    /**
     * 生日
     */
    @ApiModelProperty("生日")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd")
    private Date birthdate;
    /**
     * 年龄
     */
    @ApiModelProperty("年龄")
    @Excel(name = " 年龄 ")
    private Long age;
    @ApiModelProperty("籍贯")
    @Excel(name = " 籍贯 ")
    private String nativePlace;
    /**
@@ -82,6 +74,37 @@
    @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;
    /**
     * 来源
     */
@@ -89,9 +112,6 @@
    @Excel(name = " 来源 ")
    private Long sourcefrom;
    /**
     * 建档时间
     */
    /**
     * 建档时间
     */
@@ -104,6 +124,7 @@
     * 建档人
     */
    @ApiModelProperty("建档人")
    @Excel(name = " 建档人 ")
    private String archiveby;
    /**
@@ -113,17 +134,20 @@
    @Excel(name = " 手机号码 ")
    private String telcode;
    /**
     * 亲属号码
     */
    @ApiModelProperty("亲属号码")
    @Excel(name = " 亲属号码 ")
    private String relativetelcode;
    /**
     * 证件类型
     * 民族
     */
    @ApiModelProperty("证件类型")
    private String idcardtype;
    @ApiModelProperty("民族")
    @Excel(name = " 民族 ")
    private String nation;
    /**
     * 机构ID
@@ -136,6 +160,7 @@
     * 微信openid
     */
    @ApiModelProperty("微信openid")
    @Excel(name = " 微信openid ")
    private String openid;
    /**
@@ -160,10 +185,54 @@
     * 标签
     */
    @ApiModelProperty("标签")
    @Excel(name = " 标签 " , cellType = Excel.ColumnType.STRING)
    private String tag;
    /**
     * 标签
     */
    @ApiModelProperty("标签id")
    @Excel(name = " 标签id " , cellType = Excel.ColumnType.STRING)
    private Long tagid;
    @ApiModelProperty("标签集合")
    List<PatArchivetag> tagList = new ArrayList<>();
    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;
    /**
     * 钉钉号
     */
    @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;