|
@@ -1,15 +1,15 @@
|
|
package com.diagbot.entity;
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
-import java.time.LocalDateTime;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
- *
|
|
|
|
|
|
+ *
|
|
* </p>
|
|
* </p>
|
|
*
|
|
*
|
|
* @author wangfeng
|
|
* @author wangfeng
|
|
@@ -97,6 +97,7 @@ public class PlanDetail implements Serializable {
|
|
public void setId(Long id) {
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getIsDeleted() {
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
return isDeleted;
|
|
}
|
|
}
|
|
@@ -104,6 +105,7 @@ public class PlanDetail implements Serializable {
|
|
public void setIsDeleted(String isDeleted) {
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Date getGmtCreate() {
|
|
public Date getGmtCreate() {
|
|
return gmtCreate;
|
|
return gmtCreate;
|
|
}
|
|
}
|
|
@@ -111,6 +113,7 @@ public class PlanDetail implements Serializable {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
this.gmtCreate = gmtCreate;
|
|
this.gmtCreate = gmtCreate;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Date getGmtModified() {
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
return gmtModified;
|
|
}
|
|
}
|
|
@@ -118,6 +121,7 @@ public class PlanDetail implements Serializable {
|
|
public void setGmtModified(Date gmtModified) {
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCreator() {
|
|
public String getCreator() {
|
|
return creator;
|
|
return creator;
|
|
}
|
|
}
|
|
@@ -125,6 +129,7 @@ public class PlanDetail implements Serializable {
|
|
public void setCreator(String creator) {
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
this.creator = creator;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getModifier() {
|
|
public String getModifier() {
|
|
return modifier;
|
|
return modifier;
|
|
}
|
|
}
|
|
@@ -132,6 +137,7 @@ public class PlanDetail implements Serializable {
|
|
public void setModifier(String modifier) {
|
|
public void setModifier(String modifier) {
|
|
this.modifier = modifier;
|
|
this.modifier = modifier;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Long getHospitalId() {
|
|
public Long getHospitalId() {
|
|
return hospitalId;
|
|
return hospitalId;
|
|
}
|
|
}
|
|
@@ -139,6 +145,7 @@ public class PlanDetail implements Serializable {
|
|
public void setHospitalId(Long hospitalId) {
|
|
public void setHospitalId(Long hospitalId) {
|
|
this.hospitalId = hospitalId;
|
|
this.hospitalId = hospitalId;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Long getPlanId() {
|
|
public Long getPlanId() {
|
|
return planId;
|
|
return planId;
|
|
}
|
|
}
|
|
@@ -146,6 +153,7 @@ public class PlanDetail implements Serializable {
|
|
public void setPlanId(Long planId) {
|
|
public void setPlanId(Long planId) {
|
|
this.planId = planId;
|
|
this.planId = planId;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getName() {
|
|
public String getName() {
|
|
return name;
|
|
return name;
|
|
}
|
|
}
|
|
@@ -153,6 +161,7 @@ public class PlanDetail implements Serializable {
|
|
public void setName(String name) {
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Integer getStatus() {
|
|
public Integer getStatus() {
|
|
return status;
|
|
return status;
|
|
}
|
|
}
|
|
@@ -160,6 +169,7 @@ public class PlanDetail implements Serializable {
|
|
public void setStatus(Integer status) {
|
|
public void setStatus(Integer status) {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Integer getNumber() {
|
|
public Integer getNumber() {
|
|
return number;
|
|
return number;
|
|
}
|
|
}
|
|
@@ -167,6 +177,7 @@ public class PlanDetail implements Serializable {
|
|
public void setNumber(Integer number) {
|
|
public void setNumber(Integer number) {
|
|
this.number = number;
|
|
this.number = number;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Integer getOrderNo() {
|
|
public Integer getOrderNo() {
|
|
return orderNo;
|
|
return orderNo;
|
|
}
|
|
}
|
|
@@ -174,6 +185,7 @@ public class PlanDetail implements Serializable {
|
|
public void setOrderNo(Integer orderNo) {
|
|
public void setOrderNo(Integer orderNo) {
|
|
this.orderNo = orderNo;
|
|
this.orderNo = orderNo;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCode() {
|
|
public String getCode() {
|
|
return code;
|
|
return code;
|
|
}
|
|
}
|
|
@@ -181,6 +193,7 @@ public class PlanDetail implements Serializable {
|
|
public void setCode(String code) {
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
this.code = code;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getValue() {
|
|
public String getValue() {
|
|
return value;
|
|
return value;
|
|
}
|
|
}
|
|
@@ -188,6 +201,7 @@ public class PlanDetail implements Serializable {
|
|
public void setValue(String value) {
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
this.value = value;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getRemark() {
|
|
public String getRemark() {
|
|
return remark;
|
|
return remark;
|
|
}
|
|
}
|
|
@@ -199,21 +213,21 @@ public class PlanDetail implements Serializable {
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "PlanDetail{" +
|
|
return "PlanDetail{" +
|
|
- "id=" + id +
|
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
|
- ", creator=" + creator +
|
|
|
|
- ", modifier=" + modifier +
|
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
|
- ", planId=" + planId +
|
|
|
|
- ", name=" + name +
|
|
|
|
- ", status=" + status +
|
|
|
|
- ", number=" + number +
|
|
|
|
- ", orderNo=" + orderNo +
|
|
|
|
- ", code=" + code +
|
|
|
|
- ", value=" + value +
|
|
|
|
- ", remark=" + remark +
|
|
|
|
- "}";
|
|
|
|
|
|
+ "id=" + id +
|
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
|
+ ", creator=" + creator +
|
|
|
|
+ ", modifier=" + modifier +
|
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
|
+ ", planId=" + planId +
|
|
|
|
+ ", name=" + name +
|
|
|
|
+ ", status=" + status +
|
|
|
|
+ ", number=" + number +
|
|
|
|
+ ", orderNo=" + orderNo +
|
|
|
|
+ ", code=" + code +
|
|
|
|
+ ", value=" + value +
|
|
|
|
+ ", remark=" + remark +
|
|
|
|
+ "}";
|
|
}
|
|
}
|
|
}
|
|
}
|