|
@@ -3,6 +3,10 @@ package com.diagbot.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+import lombok.ToString;
|
|
|
+
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
|
|
|
@@ -15,6 +19,9 @@ import java.io.Serializable;
|
|
|
* @since 2022-05-18
|
|
|
*/
|
|
|
@TableName("med_check_record")
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@ToString
|
|
|
public class CheckRecord implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -80,6 +87,11 @@ public class CheckRecord implements Serializable {
|
|
|
*/
|
|
|
private Long workFlowNodeId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 任务截止日期
|
|
|
+ */
|
|
|
+ private Long jobEndTime;
|
|
|
+
|
|
|
/**
|
|
|
* 是否删除,N:未删除,Y:删除
|
|
|
*/
|
|
@@ -110,154 +122,4 @@ public class CheckRecord implements Serializable {
|
|
|
*/
|
|
|
private String remark;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
- public Long getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHospitalId(Long hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
- }
|
|
|
- public String getBehospitalCode() {
|
|
|
- return behospitalCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBehospitalCode(String behospitalCode) {
|
|
|
- this.behospitalCode = behospitalCode;
|
|
|
- }
|
|
|
- public String getCheckType() {
|
|
|
- return checkType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCheckType(String checkType) {
|
|
|
- this.checkType = checkType;
|
|
|
- }
|
|
|
- public Long getJobCreator() {
|
|
|
- return jobCreator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobCreator(Long jobCreator) {
|
|
|
- this.jobCreator = jobCreator;
|
|
|
- }
|
|
|
- public String getJobCreatorName() {
|
|
|
- return jobCreatorName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobCreatorName(String jobCreatorName) {
|
|
|
- this.jobCreatorName = jobCreatorName;
|
|
|
- }
|
|
|
- public LocalDateTime getJobCreateTime() {
|
|
|
- return jobCreateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobCreateTime(LocalDateTime jobCreateTime) {
|
|
|
- this.jobCreateTime = jobCreateTime;
|
|
|
- }
|
|
|
- public String getJobType() {
|
|
|
- return jobType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobType(String jobType) {
|
|
|
- this.jobType = jobType;
|
|
|
- }
|
|
|
- public Long getJobDistributor() {
|
|
|
- return jobDistributor;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobDistributor(Long jobDistributor) {
|
|
|
- this.jobDistributor = jobDistributor;
|
|
|
- }
|
|
|
- public String getJobDistributionName() {
|
|
|
- return jobDistributionName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobDistributionName(String jobDistributionName) {
|
|
|
- this.jobDistributionName = jobDistributionName;
|
|
|
- }
|
|
|
- public LocalDateTime getJobDistributionTime() {
|
|
|
- return jobDistributionTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJobDistributionTime(LocalDateTime jobDistributionTime) {
|
|
|
- this.jobDistributionTime = jobDistributionTime;
|
|
|
- }
|
|
|
- public Long getWorkFlowNodeId() {
|
|
|
- return workFlowNodeId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWorkFlowNodeId(Long workFlowNodeId) {
|
|
|
- this.workFlowNodeId = workFlowNodeId;
|
|
|
- }
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(LocalDateTime 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 getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "CheckRecord{" +
|
|
|
- "id=" + id +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", behospitalCode=" + behospitalCode +
|
|
|
- ", checkType=" + checkType +
|
|
|
- ", jobCreator=" + jobCreator +
|
|
|
- ", jobCreatorName=" + jobCreatorName +
|
|
|
- ", jobCreateTime=" + jobCreateTime +
|
|
|
- ", jobType=" + jobType +
|
|
|
- ", jobDistributor=" + jobDistributor +
|
|
|
- ", jobDistributionName=" + jobDistributionName +
|
|
|
- ", jobDistributionTime=" + jobDistributionTime +
|
|
|
- ", workFlowNodeId=" + workFlowNodeId +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
}
|