|
@@ -2,8 +2,10 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -14,6 +16,7 @@ import java.util.Date;
|
|
|
* @author wangfeng
|
|
|
* @since 2020-07-06
|
|
|
*/
|
|
|
+@Data
|
|
|
public class MedCheckInfo implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -79,100 +82,51 @@ public class MedCheckInfo implements Serializable {
|
|
|
*/
|
|
|
private Integer status;
|
|
|
|
|
|
+ /**
|
|
|
+ * 核查类型(0病历,1病案首页,2全部)
|
|
|
+ */
|
|
|
private Integer checkType;
|
|
|
|
|
|
- public Integer getCheckType() {
|
|
|
- return checkType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCheckType(Integer checkType) {
|
|
|
- this.checkType = checkType;
|
|
|
- }
|
|
|
-
|
|
|
- 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;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 生成状态(0未生成,1已生成)
|
|
|
+ */
|
|
|
+ private Integer createStatus;
|
|
|
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务创建人编号
|
|
|
+ */
|
|
|
+ private String jobCreator;
|
|
|
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
- public String getBehospitalCode() {
|
|
|
- return behospitalCode;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务创建人
|
|
|
+ */
|
|
|
+ private String jobCreatorName;
|
|
|
|
|
|
- public void setBehospitalCode(String behospitalCode) {
|
|
|
- this.behospitalCode = behospitalCode;
|
|
|
- }
|
|
|
- public Long getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务生成时间
|
|
|
+ */
|
|
|
+ private Date jobCreateTime;
|
|
|
|
|
|
- public void setHospitalId(Long hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
- }
|
|
|
- public Long getCheckId() {
|
|
|
- return checkId;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务类型(0-科室任务 1-院级 2-质控科)
|
|
|
+ */
|
|
|
+ private Integer jobType;
|
|
|
|
|
|
- public void setCheckId(Long checkId) {
|
|
|
- this.checkId = checkId;
|
|
|
- }
|
|
|
- public String getCheckName() {
|
|
|
- return checkName;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务分配人编号
|
|
|
+ */
|
|
|
+ private String jobDistributor;
|
|
|
|
|
|
- public void setCheckName(String checkName) {
|
|
|
- this.checkName = checkName;
|
|
|
- }
|
|
|
- public Date getCheckTime() {
|
|
|
- return checkTime;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务分配人姓名
|
|
|
+ */
|
|
|
+ private String jobDistributionName;
|
|
|
|
|
|
- public void setCheckTime(Date checkTime) {
|
|
|
- this.checkTime = checkTime;
|
|
|
- }
|
|
|
- public Integer getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 核查任务分配时间
|
|
|
+ */
|
|
|
+ private Date jobDistributionTime;
|
|
|
|
|
|
- public void setStatus(Integer status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|