|
@ -3,7 +3,6 @@ package com.yihu.jw.entity.door;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
import com.yihu.jw.entity.followup.Followup;
|
|
|
import com.yihu.jw.entity.hospital.prescription.WlyyPrescriptionDO;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
@ -19,14 +18,12 @@ import java.util.Map;
|
|
|
* 上门服务工单实体
|
|
|
*
|
|
|
* @author Administrator on 2019年03月19日
|
|
|
*
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_door_service_order")
|
|
|
public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 工单状态
|
|
|
*/
|
|
@ -38,7 +35,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
accept(3, "已接单"),
|
|
|
waitForServe(4, "待服务"),
|
|
|
waitForCommnet(5, "待评价"),
|
|
|
complete(6,"已完成");
|
|
|
complete(6, "已完成");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -64,7 +61,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum PayWay {
|
|
|
|
|
|
wechat(1, "微信支付"),
|
|
|
offLine(2,"线下支付");
|
|
|
offLine(2, "线下支付");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -90,7 +87,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum CancelType {
|
|
|
|
|
|
dispatcher(1, "调度员取消"),
|
|
|
patient(2,"居民取消"),
|
|
|
patient(2, "居民取消"),
|
|
|
doctor(3, "医生取消");
|
|
|
|
|
|
private Integer type;
|
|
@ -117,7 +114,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum ExamPaperUploadWay {
|
|
|
|
|
|
photo(1, "拍照补录"),
|
|
|
interfaceData(2,"接口数据");
|
|
|
interfaceData(2, "接口数据");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -143,7 +140,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum DoctorSignWay {
|
|
|
|
|
|
locate(1, "定位"),
|
|
|
sacn(2,"扫码");
|
|
|
sacn(2, "扫码");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -169,7 +166,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum IsPatientConfirm {
|
|
|
|
|
|
no(0, "未确认"),
|
|
|
yes(1,"已确认");
|
|
|
yes(1, "已确认");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -195,7 +192,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public enum IsTransOtherOrg {
|
|
|
|
|
|
no(0, "不转"),
|
|
|
yes(1,"已转");
|
|
|
yes(1, "已转");
|
|
|
|
|
|
private Integer type;
|
|
|
private String desc;
|
|
@ -218,6 +215,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
|
|
|
private String packageId;//服务包的id
|
|
|
private String feeAfter;//服务后收费标识(1是0否)
|
|
|
private String signId;//签约id
|
|
|
|
|
|
/**
|
|
|
* 服务编号
|
|
@ -594,6 +592,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public void setPrescriptionDOList(List<WlyyDoorPrescriptionDO> prescriptionDOList) {
|
|
|
this.prescriptionDOList = prescriptionDOList;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public List<WlyyDoorPrescriptionDO> getAfterPrescriptionList() {
|
|
|
return afterPrescriptionList;
|
|
@ -604,15 +603,11 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "number")
|
|
|
public String getNumber() {
|
|
|
return number;
|
|
|
}
|
|
|
|
|
|
public void setNumber(String number) {
|
|
|
this.number = number;
|
|
|
}
|
|
@ -621,6 +616,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getProxyPatient() {
|
|
|
return proxyPatient;
|
|
|
}
|
|
|
|
|
|
public void setProxyPatient(String proxyPatient) {
|
|
|
this.proxyPatient = proxyPatient;
|
|
|
}
|
|
@ -629,6 +625,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getProxyPatientName() {
|
|
|
return proxyPatientName;
|
|
|
}
|
|
|
|
|
|
public void setProxyPatientName(String proxyPatientName) {
|
|
|
this.proxyPatientName = proxyPatientName;
|
|
|
}
|
|
@ -637,6 +634,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getProxyPatientPhone() {
|
|
|
return proxyPatientPhone;
|
|
|
}
|
|
|
|
|
|
public void setProxyPatientPhone(String proxyPatientPhone) {
|
|
|
this.proxyPatientPhone = proxyPatientPhone;
|
|
|
}
|
|
@ -645,6 +643,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatient() {
|
|
|
return patient;
|
|
|
}
|
|
|
|
|
|
public void setPatient(String patient) {
|
|
|
this.patient = patient;
|
|
|
}
|
|
@ -653,6 +652,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
|
|
|
|
public void setPatientName(String patientName) {
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
@ -661,6 +661,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatientPhone() {
|
|
|
return patientPhone;
|
|
|
}
|
|
|
|
|
|
public void setPatientPhone(String patientPhone) {
|
|
|
this.patientPhone = patientPhone;
|
|
|
}
|
|
@ -669,6 +670,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatientRelation() {
|
|
|
return patientRelation;
|
|
|
}
|
|
|
|
|
|
public void setPatientRelation(String patientRelation) {
|
|
|
this.patientRelation = patientRelation;
|
|
|
}
|
|
@ -677,6 +679,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDispatcher() {
|
|
|
return dispatcher;
|
|
|
}
|
|
|
|
|
|
public void setDispatcher(String dispatcher) {
|
|
|
this.dispatcher = dispatcher;
|
|
|
}
|
|
@ -685,6 +688,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDispatcherName() {
|
|
|
return dispatcherName;
|
|
|
}
|
|
|
|
|
|
public void setDispatcherName(String dispatcherName) {
|
|
|
this.dispatcherName = dispatcherName;
|
|
|
}
|
|
@ -693,6 +697,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatientExpectedServeTime() {
|
|
|
return patientExpectedServeTime;
|
|
|
}
|
|
|
|
|
|
public void setPatientExpectedServeTime(String patientExpectedServeTime) {
|
|
|
this.patientExpectedServeTime = patientExpectedServeTime;
|
|
|
}
|
|
@ -701,6 +706,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getServeDesc() {
|
|
|
return serveDesc;
|
|
|
}
|
|
|
|
|
|
public void setServeDesc(String serveDesc) {
|
|
|
this.serveDesc = serveDesc;
|
|
|
}
|
|
@ -709,6 +715,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getServeTown() {
|
|
|
return serveTown;
|
|
|
}
|
|
|
|
|
|
public void setServeTown(String serveTown) {
|
|
|
this.serveTown = serveTown;
|
|
|
}
|
|
@ -717,6 +724,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getServeAddress() {
|
|
|
return serveAddress;
|
|
|
}
|
|
|
|
|
|
public void setServeAddress(String serveAddress) {
|
|
|
this.serveAddress = serveAddress;
|
|
|
}
|
|
@ -725,6 +733,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getServeLat() {
|
|
|
return serveLat;
|
|
|
}
|
|
|
|
|
|
public void setServeLat(String serveLat) {
|
|
|
this.serveLat = serveLat;
|
|
|
}
|
|
@ -733,6 +742,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getServeLon() {
|
|
|
return serveLon;
|
|
|
}
|
|
|
|
|
|
public void setServeLon(String serveLon) {
|
|
|
this.serveLon = serveLon;
|
|
|
}
|
|
@ -741,6 +751,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
this.remark = remark;
|
|
|
}
|
|
@ -749,6 +760,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getIsPatientConfirm() {
|
|
|
return isPatientConfirm;
|
|
|
}
|
|
|
|
|
|
public void setIsPatientConfirm(Integer isPatientConfirm) {
|
|
|
this.isPatientConfirm = isPatientConfirm;
|
|
|
}
|
|
@ -757,6 +769,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getPatientConfirmTime() {
|
|
|
return patientConfirmTime;
|
|
|
}
|
|
|
|
|
|
public void setPatientConfirmTime(Date patientConfirmTime) {
|
|
|
this.patientConfirmTime = patientConfirmTime;
|
|
|
}
|
|
@ -765,6 +778,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getIsTransOtherOrg() {
|
|
|
return isTransOtherOrg;
|
|
|
}
|
|
|
|
|
|
public void setIsTransOtherOrg(Integer isTransOtherOrg) {
|
|
|
this.isTransOtherOrg = isTransOtherOrg;
|
|
|
}
|
|
@ -791,6 +805,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getTransedDispatcher() {
|
|
|
return transedDispatcher;
|
|
|
}
|
|
|
|
|
|
public void setTransedDispatcher(String transedDispatcher) {
|
|
|
this.transedDispatcher = transedDispatcher;
|
|
|
}
|
|
@ -799,6 +814,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getTransedDispatcherName() {
|
|
|
return transedDispatcherName;
|
|
|
}
|
|
|
|
|
|
public void setTransedDispatcherName(String transedDispatcherName) {
|
|
|
this.transedDispatcherName = transedDispatcherName;
|
|
|
}
|
|
@ -807,16 +823,17 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public BigDecimal getTotalFee() {
|
|
|
return totalFee;
|
|
|
}
|
|
|
|
|
|
public void setTotalFee(BigDecimal totalFee) {
|
|
|
this.totalFee = totalFee;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "doctor")
|
|
|
public String getDoctor() {
|
|
|
return doctor;
|
|
|
}
|
|
|
|
|
|
public void setDoctor(String doctor) {
|
|
|
this.doctor = doctor;
|
|
|
}
|
|
@ -825,6 +842,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDoctorName() {
|
|
|
return doctorName;
|
|
|
}
|
|
|
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
@ -833,6 +851,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDoctorType() {
|
|
|
return doctorType;
|
|
|
}
|
|
|
|
|
|
public void setDoctorType(String doctorType) {
|
|
|
this.doctorType = doctorType;
|
|
|
}
|
|
@ -841,6 +860,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDoctorArrivingTime() {
|
|
|
return doctorArrivingTime;
|
|
|
}
|
|
|
|
|
|
public void setDoctorArrivingTime(String doctorArrivingTime) {
|
|
|
this.doctorArrivingTime = doctorArrivingTime;
|
|
|
}
|
|
@ -849,6 +869,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getDoctorSignTime() {
|
|
|
return doctorSignTime;
|
|
|
}
|
|
|
|
|
|
public void setDoctorSignTime(Date doctorSignTime) {
|
|
|
this.doctorSignTime = doctorSignTime;
|
|
|
}
|
|
@ -857,6 +878,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getDoctorSignWay() {
|
|
|
return doctorSignWay;
|
|
|
}
|
|
|
|
|
|
public void setDoctorSignWay(Integer doctorSignWay) {
|
|
|
this.doctorSignWay = doctorSignWay;
|
|
|
}
|
|
@ -865,6 +887,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDoctorSignLocation() {
|
|
|
return doctorSignLocation;
|
|
|
}
|
|
|
|
|
|
public void setDoctorSignLocation(String doctorSignLocation) {
|
|
|
this.doctorSignLocation = doctorSignLocation;
|
|
|
}
|
|
@ -873,6 +896,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getDoctorSignImg() {
|
|
|
return doctorSignImg;
|
|
|
}
|
|
|
|
|
|
public void setDoctorSignImg(String doctorSignImg) {
|
|
|
this.doctorSignImg = doctorSignImg;
|
|
|
}
|
|
@ -881,6 +905,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getPatientConfirmFinishWay() {
|
|
|
return patientConfirmFinishWay;
|
|
|
}
|
|
|
|
|
|
public void setPatientConfirmFinishWay(Integer patientConfirmFinishWay) {
|
|
|
this.patientConfirmFinishWay = patientConfirmFinishWay;
|
|
|
}
|
|
@ -889,6 +914,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPatientConfirmFinishImg() {
|
|
|
return patientConfirmFinishImg;
|
|
|
}
|
|
|
|
|
|
public void setPatientConfirmFinishImg(String patientConfirmFinishImg) {
|
|
|
this.patientConfirmFinishImg = patientConfirmFinishImg;
|
|
|
}
|
|
@ -897,6 +923,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getPatientConfirmFinishTime() {
|
|
|
return patientConfirmFinishTime;
|
|
|
}
|
|
|
|
|
|
public void setPatientConfirmFinishTime(Date patientConfirmFinishTime) {
|
|
|
this.patientConfirmFinishTime = patientConfirmFinishTime;
|
|
|
}
|
|
@ -905,6 +932,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPresentImgs() {
|
|
|
return presentImgs;
|
|
|
}
|
|
|
|
|
|
public void setPresentImgs(String presentImgs) {
|
|
|
this.presentImgs = presentImgs;
|
|
|
}
|
|
@ -913,6 +941,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getExamPaperStatus() {
|
|
|
return examPaperStatus;
|
|
|
}
|
|
|
|
|
|
public void setExamPaperStatus(Integer examPaperStatus) {
|
|
|
this.examPaperStatus = examPaperStatus;
|
|
|
}
|
|
@ -921,6 +950,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getExamPaperImgs() {
|
|
|
return examPaperImgs;
|
|
|
}
|
|
|
|
|
|
public void setExamPaperImgs(String examPaperImgs) {
|
|
|
this.examPaperImgs = examPaperImgs;
|
|
|
}
|
|
@ -929,6 +959,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getExamPaperUploadTime() {
|
|
|
return examPaperUploadTime;
|
|
|
}
|
|
|
|
|
|
public void setExamPaperUploadTime(Date examPaperUploadTime) {
|
|
|
this.examPaperUploadTime = examPaperUploadTime;
|
|
|
}
|
|
@ -937,6 +968,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getExamPaperUploadWay() {
|
|
|
return examPaperUploadWay;
|
|
|
}
|
|
|
|
|
|
public void setExamPaperUploadWay(Integer examPaperUploadWay) {
|
|
|
this.examPaperUploadWay = examPaperUploadWay;
|
|
|
}
|
|
@ -945,6 +977,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
@ -954,6 +987,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getCompleteTime() {
|
|
|
return completeTime;
|
|
|
}
|
|
|
|
|
|
public void setCompleteTime(Date completeTime) {
|
|
|
this.completeTime = completeTime;
|
|
|
}
|
|
@ -962,6 +996,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getCancelType() {
|
|
|
return cancelType;
|
|
|
}
|
|
|
|
|
|
public void setCancelType(Integer cancelType) {
|
|
|
this.cancelType = cancelType;
|
|
|
}
|
|
@ -970,6 +1005,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getCancelReason() {
|
|
|
return cancelReason;
|
|
|
}
|
|
|
|
|
|
public void setCancelReason(String cancelReason) {
|
|
|
this.cancelReason = cancelReason;
|
|
|
}
|
|
@ -979,6 +1015,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getCancelTime() {
|
|
|
return cancelTime;
|
|
|
}
|
|
|
|
|
|
public void setCancelTime(Date cancelTime) {
|
|
|
this.cancelTime = cancelTime;
|
|
|
}
|
|
@ -987,6 +1024,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Integer getPayWay() {
|
|
|
return payWay;
|
|
|
}
|
|
|
|
|
|
public void setPayWay(Integer payWay) {
|
|
|
this.payWay = payWay;
|
|
|
}
|
|
@ -995,6 +1033,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public String getPayNumber() {
|
|
|
return payNumber;
|
|
|
}
|
|
|
|
|
|
public void setPayNumber(String payNumber) {
|
|
|
this.payNumber = payNumber;
|
|
|
}
|
|
@ -1003,6 +1042,7 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public Date getPayTime() {
|
|
|
return payTime;
|
|
|
}
|
|
|
|
|
|
public void setPayTime(Date payTime) {
|
|
|
this.payTime = payTime;
|
|
|
}
|
|
@ -1286,4 +1326,12 @@ public class WlyyDoorServiceOrderDO extends UuidIdentityEntityWithOperator {
|
|
|
public void setFeeAfter(String feeAfter) {
|
|
|
this.feeAfter = feeAfter;
|
|
|
}
|
|
|
|
|
|
public String getSignId() {
|
|
|
return signId;
|
|
|
}
|
|
|
|
|
|
public void setSignId(String signId) {
|
|
|
this.signId = signId;
|
|
|
}
|
|
|
}
|