|
@@ -0,0 +1,201 @@
|
|
|
|
+package com.diagbot.entity;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ * 医院科室信息表
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author rengb
|
|
|
|
+ * @since 2018-11-19
|
|
|
|
+ */
|
|
|
|
+@TableName("tran_hospital_dept")
|
|
|
|
+public class HospitalDept implements Serializable {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 主键
|
|
|
|
+ */
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
+ private Long id;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
|
+ */
|
|
|
|
+ private String isDeleted;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 记录创建时间
|
|
|
|
+ */
|
|
|
|
+ private Date gmtCreate;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
|
+ */
|
|
|
|
+ private Date gmtModified;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
|
+ */
|
|
|
|
+ private String creator;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
|
+ */
|
|
|
|
+ private String modifier;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院科室编码
|
|
|
|
+ */
|
|
|
|
+ private String code;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院科室名称
|
|
|
|
+ */
|
|
|
|
+ private String name;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院编码
|
|
|
|
+ */
|
|
|
|
+ private String hospitalCode;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 医院名称
|
|
|
|
+ */
|
|
|
|
+ private String hospitalName;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 朗通科室名称
|
|
|
|
+ */
|
|
|
|
+ private String conceptDeptName;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 状态:0.禁用1.启用
|
|
|
|
+ */
|
|
|
|
+ private Integer status;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 备注
|
|
|
|
+ */
|
|
|
|
+ private String remark;
|
|
|
|
+
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+ public String getIsDeleted() {
|
|
|
|
+ return isDeleted;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIsDeleted(String isDeleted) {
|
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
|
+ }
|
|
|
|
+ public Date getGmtCreate() {
|
|
|
|
+ return gmtCreate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
|
+ }
|
|
|
|
+ public Date getGmtModified() {
|
|
|
|
+ return gmtModified;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
|
+ }
|
|
|
|
+ public String getCreator() {
|
|
|
|
+ return creator;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreator(String creator) {
|
|
|
|
+ this.creator = creator;
|
|
|
|
+ }
|
|
|
|
+ public String getModifier() {
|
|
|
|
+ return modifier;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setModifier(String modifier) {
|
|
|
|
+ this.modifier = modifier;
|
|
|
|
+ }
|
|
|
|
+ public String getCode() {
|
|
|
|
+ return code;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCode(String code) {
|
|
|
|
+ this.code = code;
|
|
|
|
+ }
|
|
|
|
+ public String getName() {
|
|
|
|
+ return name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setName(String name) {
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
|
|
|
+ public String getHospitalCode() {
|
|
|
|
+ return hospitalCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setHospitalCode(String hospitalCode) {
|
|
|
|
+ this.hospitalCode = hospitalCode;
|
|
|
|
+ }
|
|
|
|
+ public String getHospitalName() {
|
|
|
|
+ return hospitalName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setHospitalName(String hospitalName) {
|
|
|
|
+ this.hospitalName = hospitalName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getConceptDeptName() {
|
|
|
|
+ return conceptDeptName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setconceptDeptName(String conceptDeptName) {
|
|
|
|
+ this.conceptDeptName = conceptDeptName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getStatus() {
|
|
|
|
+ return status;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStatus(Integer status) {
|
|
|
|
+ this.status = status;
|
|
|
|
+ }
|
|
|
|
+ public String getRemark() {
|
|
|
|
+ return remark;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRemark(String remark) {
|
|
|
|
+ this.remark = remark;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return "HospitalDept{" +
|
|
|
|
+ "id=" + id +
|
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
|
+ ", creator=" + creator +
|
|
|
|
+ ", modifier=" + modifier +
|
|
|
|
+ ", code=" + code +
|
|
|
|
+ ", name=" + name +
|
|
|
|
+ ", hospitalCode=" + hospitalCode +
|
|
|
|
+ ", hospitalName=" + hospitalName +
|
|
|
|
+ ", conceptDeptName=" + conceptDeptName +
|
|
|
|
+ ", status=" + status +
|
|
|
|
+ ", remark=" + remark +
|
|
|
|
+ "}";
|
|
|
|
+ }
|
|
|
|
+}
|