|
@@ -2,8 +2,9 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -66,12 +67,12 @@ public class BasHospitalInfo implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -95,6 +96,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -102,6 +104,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
+
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
@@ -109,6 +112,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
+
|
|
|
public String getSpell() {
|
|
|
return spell;
|
|
|
}
|
|
@@ -116,6 +120,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setSpell(String spell) {
|
|
|
this.spell = spell;
|
|
|
}
|
|
|
+
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
@@ -123,6 +128,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address;
|
|
|
}
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -130,6 +136,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
public Integer getOrderNo() {
|
|
|
return orderNo;
|
|
|
}
|
|
@@ -137,6 +144,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setOrderNo(Integer orderNo) {
|
|
|
this.orderNo = orderNo;
|
|
|
}
|
|
|
+
|
|
|
public Integer getConnect() {
|
|
|
return connect;
|
|
|
}
|
|
@@ -144,6 +152,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setConnect(Integer connect) {
|
|
|
this.connect = connect;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -151,20 +160,23 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
+
|
|
|
+ public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
+
|
|
|
+ public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -172,6 +184,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -179,6 +192,7 @@ public class BasHospitalInfo implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -190,20 +204,20 @@ public class BasHospitalInfo implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "BasHospitalInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", name=" + name +
|
|
|
- ", code=" + code +
|
|
|
- ", spell=" + spell +
|
|
|
- ", address=" + address +
|
|
|
- ", status=" + status +
|
|
|
- ", orderNo=" + orderNo +
|
|
|
- ", connect=" + connect +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", name=" + name +
|
|
|
+ ", code=" + code +
|
|
|
+ ", spell=" + spell +
|
|
|
+ ", address=" + address +
|
|
|
+ ", status=" + status +
|
|
|
+ ", orderNo=" + orderNo +
|
|
|
+ ", connect=" + connect +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|