package com.example.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import java.util.Arrays;
|
import java.util.Date;
|
import lombok.Data;
|
|
/**
|
* 院区信息表
|
* @TableName dict_hosp
|
*/
|
@TableName(value ="dict_hosp")
|
@Data
|
public class DictHosp implements Serializable {
|
/**
|
* 院区ID
|
*/
|
@TableId
|
private String hospAreaId;
|
|
/**
|
* 院区名称
|
*/
|
private String hospAreaName;
|
|
/**
|
* 医疗机构ID
|
*/
|
private String hospid;
|
|
/**
|
* 医疗机构名称
|
*/
|
private String hospName;
|
|
/**
|
* 院区编码
|
*/
|
private String code;
|
|
/**
|
* 五笔简码
|
*/
|
private String wbm;
|
|
/**
|
* 拼音简码
|
*/
|
private String spell;
|
|
/**
|
* 行政区划ID
|
*/
|
private String areaid;
|
|
/**
|
* 行政区划名称
|
*/
|
private String areaName;
|
|
/**
|
* 是否主院区 0-不是 1-是
|
*/
|
private String mainHospArea;
|
|
/**
|
* 负责人
|
*/
|
private String principal;
|
|
/**
|
* 负责人电话
|
*/
|
private String phone;
|
|
/**
|
* 编制床位数
|
*/
|
private Integer plaitBed;
|
|
/**
|
* 开放床位数
|
*/
|
private Integer openBed;
|
|
/**
|
* 建立日期
|
*/
|
private Date buildDate;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 修改人
|
*/
|
private String updateBy;
|
|
/**
|
* 修改时间
|
*/
|
private Date updateTime;
|
|
/**
|
* 排序
|
*/
|
private Integer orderNum;
|
|
/**
|
* 数据状态(PT10.00.004)
|
*/
|
private String effective;
|
|
/**
|
* 创建人姓名
|
*/
|
private String createByName;
|
|
/**
|
* 修改人姓名
|
*/
|
private String updateByName;
|
|
/**
|
* 0删除1未删除
|
*/
|
private Integer deleted;
|
|
/**
|
* 创建人id
|
*/
|
private String createId;
|
|
/**
|
* 修改人id
|
*/
|
private String updateId;
|
|
/**
|
* 秘钥
|
*/
|
private String secretKey;
|
|
/**
|
* 到期时间
|
*/
|
private Date expirationTime;
|
|
/**
|
* 数据库名
|
*/
|
private String dbname;
|
|
/**
|
* 中间层中HisServiceBeanName在ServiceFactory类中查看
|
*/
|
private String beanName;
|
|
/**
|
* 图片(Base64编码)
|
*/
|
private byte[] imgbase64;
|
|
private Integer isAutoAsyncJg;
|
|
private Integer isTbHisProject;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|