|
@@ -86,6 +86,11 @@ public class HospitalInfo implements Serializable {
|
|
|
*/
|
|
|
private String remark;
|
|
|
|
|
|
+ /**
|
|
|
+ * 是否对接(0-不对接,1-对接)
|
|
|
+ */
|
|
|
+ private Integer connect;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -93,6 +98,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -100,6 +106,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -107,6 +114,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
+
|
|
|
public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -114,6 +122,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -121,6 +130,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -128,6 +138,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
@@ -135,6 +146,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -142,6 +154,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
+
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
@@ -149,6 +162,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address;
|
|
|
}
|
|
|
+
|
|
|
public String getSpell() {
|
|
|
return spell;
|
|
|
}
|
|
@@ -156,6 +170,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setSpell(String spell) {
|
|
|
this.spell = spell;
|
|
|
}
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -163,6 +178,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
public Integer getOrderNo() {
|
|
|
return orderNo;
|
|
|
}
|
|
@@ -170,6 +186,7 @@ public class HospitalInfo implements Serializable {
|
|
|
public void setOrderNo(Integer orderNo) {
|
|
|
this.orderNo = orderNo;
|
|
|
}
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -178,22 +195,31 @@ public class HospitalInfo implements Serializable {
|
|
|
this.remark = remark;
|
|
|
}
|
|
|
|
|
|
+ public Integer getConnect() {
|
|
|
+ return connect;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConnect(Integer connect) {
|
|
|
+ this.connect = connect;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "HospitalInfo{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", code=" + code +
|
|
|
- ", name=" + name +
|
|
|
- ", address=" + address +
|
|
|
- ", spell=" + spell +
|
|
|
- ", status=" + status +
|
|
|
- ", orderNo=" + orderNo +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", code=" + code +
|
|
|
+ ", name=" + name +
|
|
|
+ ", address=" + address +
|
|
|
+ ", spell=" + spell +
|
|
|
+ ", status=" + status +
|
|
|
+ ", orderNo=" + orderNo +
|
|
|
+ ", remark=" + remark +
|
|
|
+ ", connect=" + connect +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|