|
@@ -1,11 +1,7 @@
|
|
|
package com.diagbot.dto;
|
|
|
-
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
-
|
|
|
-import javax.validation.constraints.NotBlank;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -13,8 +9,7 @@ import java.util.Date;
|
|
|
* @author: cy
|
|
|
* @time: 2020/9/07 15:00
|
|
|
*/
|
|
|
-@Getter
|
|
|
-@Setter
|
|
|
+
|
|
|
public class ExamineInfoDTO {
|
|
|
/**
|
|
|
* 医院id
|
|
@@ -36,28 +31,19 @@ public class ExamineInfoDTO {
|
|
|
*/
|
|
|
private String examineItemName;
|
|
|
|
|
|
- /**
|
|
|
- * 检查时间
|
|
|
- */
|
|
|
- @JsonIgnore
|
|
|
- private String cTime;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 返回检查时间
|
|
|
*/
|
|
|
- private Date checkTime;
|
|
|
+ private Date cTime;
|
|
|
+
|
|
|
|
|
|
- /**
|
|
|
- * 报告时间
|
|
|
- */
|
|
|
- @JsonIgnore
|
|
|
- private String rTime;
|
|
|
|
|
|
/**
|
|
|
* 返回报告时间
|
|
|
*/
|
|
|
- private Date repTime;
|
|
|
-
|
|
|
+ private Date rTime;
|
|
|
|
|
|
/**
|
|
|
* 开单医生
|
|
@@ -74,4 +60,91 @@ public class ExamineInfoDTO {
|
|
|
*/
|
|
|
@JsonIgnore
|
|
|
private String info;
|
|
|
+
|
|
|
+ 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 getExamineItemType() {
|
|
|
+ return examineItemType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamineItemType(String examineItemType) {
|
|
|
+ this.examineItemType = examineItemType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamineItemName() {
|
|
|
+ return examineItemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamineItemName(String examineItemName) {
|
|
|
+ this.examineItemName = examineItemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getcTime() {
|
|
|
+ return cTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setcTime(Date cTime) {
|
|
|
+ this.cTime = cTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getrTime() {
|
|
|
+ return rTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setrTime(Date rTime) {
|
|
|
+ this.rTime = rTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDoctorName() {
|
|
|
+ return doctorName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctorName(String doctorName) {
|
|
|
+ this.doctorName = doctorName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRepNo() {
|
|
|
+ return repNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRepNo(String repNo) {
|
|
|
+ this.repNo = repNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInfo() {
|
|
|
+ return info;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInfo(String info) {
|
|
|
+ this.info = info;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ExamineInfoDTO{" +
|
|
|
+ "hospitalId=" + hospitalId +
|
|
|
+ ", behospitalCode='" + behospitalCode + '\'' +
|
|
|
+ ", examineItemType='" + examineItemType + '\'' +
|
|
|
+ ", examineItemName='" + examineItemName + '\'' +
|
|
|
+ ", cTime=" + cTime +
|
|
|
+ ", rTime=" + rTime +
|
|
|
+ ", doctorName='" + doctorName + '\'' +
|
|
|
+ ", repNo='" + repNo + '\'' +
|
|
|
+ ", info='" + info + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
}
|