| | |
| | | /** 转出医院名称 */ |
| | | private String hospitalOutName; |
| | | |
| | | /** 转出医院ID(关联hosp_data表的HospID) */ |
| | | private Long hospitalOutId; |
| | | |
| | | /** 转出医院科室 */ |
| | | private String hospitalOutDepartment; |
| | | |
| | | /** 转出医院科室ID(对应SQL Server dictionary表的vID) */ |
| | | private String hospitalOutDepartmentId; |
| | | |
| | | /** 转出医院床号 */ |
| | | private String hospitalOutBedNumber; |
| | |
| | | /** 转入医院名称 */ |
| | | private String hospitalInName; |
| | | |
| | | /** 转入医院ID(关联hosp_data表的HospID) */ |
| | | private Long hospitalInId; |
| | | |
| | | /** 转入医院科室 */ |
| | | private String hospitalInDepartment; |
| | | |
| | | /** 转入医院科室ID(对应SQL Server dictionary表的vID) */ |
| | | private String hospitalInDepartmentId; |
| | | |
| | | /** 转入医院床号 */ |
| | | private String hospitalInBedNumber; |
| | |
| | | |
| | | /** 乘客联系电话(福祉车) */ |
| | | private String passengerPhone; |
| | | |
| | | /** 病情ID列表(ICD-10疾病ID列表,逗号分隔,用于同步调度单的OrdICD_ID参数) */ |
| | | private String diseaseIds; |
| | | |
| | | /** 单据类型ID(对应SQL Server的dictionary表vID) */ |
| | | private String documentTypeId; |
| | | |
| | | /** 任务类型ID(对应SQL Server的dictionary表vID) */ |
| | | private String taskTypeId; |
| | | |
| | | /** 旧系统ServiceOrdID */ |
| | | private Long legacyServiceOrdId; |
| | | |
| | | /** 旧系统DispatchOrdID */ |
| | | private Long legacyDispatchOrdId; |
| | | |
| | | /** 同步状态:0-未同步,1-同步中,2-同步成功,3-同步失败 */ |
| | | private Integer syncStatus; |
| | | |
| | | /** 同步时间 */ |
| | | private java.util.Date syncTime; |
| | | |
| | | /** 同步错误信息 */ |
| | | private String syncErrorMsg; |
| | | |
| | | /** 调度单同步状态:0-未同步,1-同步中,2-同步成功,3-同步失败 */ |
| | | private Integer dispatchSyncStatus; |
| | | |
| | | /** 调度单同步时间 */ |
| | | private java.util.Date dispatchSyncTime; |
| | | |
| | | /** 调度单同步错误信息 */ |
| | | private String dispatchSyncErrorMsg; |
| | | |
| | | |
| | | |
| | | public Long getId() { |
| | | return id; |
| | |
| | | this.hospitalOutName = hospitalOutName; |
| | | } |
| | | |
| | | public Long getHospitalOutId() { |
| | | return hospitalOutId; |
| | | } |
| | | |
| | | public void setHospitalOutId(Long hospitalOutId) { |
| | | this.hospitalOutId = hospitalOutId; |
| | | } |
| | | |
| | | public String getHospitalOutDepartment() { |
| | | return hospitalOutDepartment; |
| | | } |
| | | |
| | | public void setHospitalOutDepartment(String hospitalOutDepartment) { |
| | | this.hospitalOutDepartment = hospitalOutDepartment; |
| | | } |
| | | |
| | | public String getHospitalOutDepartmentId() { |
| | | return hospitalOutDepartmentId; |
| | | } |
| | | |
| | | public void setHospitalOutDepartmentId(String hospitalOutDepartmentId) { |
| | | this.hospitalOutDepartmentId = hospitalOutDepartmentId; |
| | | } |
| | | |
| | | public String getHospitalOutBedNumber() { |
| | |
| | | this.hospitalInName = hospitalInName; |
| | | } |
| | | |
| | | public Long getHospitalInId() { |
| | | return hospitalInId; |
| | | } |
| | | |
| | | public void setHospitalInId(Long hospitalInId) { |
| | | this.hospitalInId = hospitalInId; |
| | | } |
| | | |
| | | public String getHospitalInDepartment() { |
| | | return hospitalInDepartment; |
| | | } |
| | | |
| | | public void setHospitalInDepartment(String hospitalInDepartment) { |
| | | this.hospitalInDepartment = hospitalInDepartment; |
| | | } |
| | | |
| | | public String getHospitalInDepartmentId() { |
| | | return hospitalInDepartmentId; |
| | | } |
| | | |
| | | public void setHospitalInDepartmentId(String hospitalInDepartmentId) { |
| | | this.hospitalInDepartmentId = hospitalInDepartmentId; |
| | | } |
| | | |
| | | public String getHospitalInBedNumber() { |
| | |
| | | this.passengerPhone = passengerPhone; |
| | | } |
| | | |
| | | public String getDiseaseIds() { |
| | | return diseaseIds; |
| | | } |
| | | |
| | | public void setDiseaseIds(String diseaseIds) { |
| | | this.diseaseIds = diseaseIds; |
| | | } |
| | | |
| | | public String getDocumentTypeId() { |
| | | return documentTypeId; |
| | | } |
| | | |
| | | public void setDocumentTypeId(String documentTypeId) { |
| | | this.documentTypeId = documentTypeId; |
| | | } |
| | | |
| | | public String getTaskTypeId() { |
| | | return taskTypeId; |
| | | } |
| | | |
| | | public void setTaskTypeId(String taskTypeId) { |
| | | this.taskTypeId = taskTypeId; |
| | | } |
| | | |
| | | public Long getLegacyServiceOrdId() { |
| | | return legacyServiceOrdId; |
| | | } |
| | | |
| | | public void setLegacyServiceOrdId(Long legacyServiceOrdId) { |
| | | this.legacyServiceOrdId = legacyServiceOrdId; |
| | | } |
| | | |
| | | public Long getLegacyDispatchOrdId() { |
| | | return legacyDispatchOrdId; |
| | | } |
| | | |
| | | public void setLegacyDispatchOrdId(Long legacyDispatchOrdId) { |
| | | this.legacyDispatchOrdId = legacyDispatchOrdId; |
| | | } |
| | | |
| | | public Integer getSyncStatus() { |
| | | return syncStatus; |
| | | } |
| | | |
| | | public void setSyncStatus(Integer syncStatus) { |
| | | this.syncStatus = syncStatus; |
| | | } |
| | | |
| | | public java.util.Date getSyncTime() { |
| | | return syncTime; |
| | | } |
| | | |
| | | public void setSyncTime(java.util.Date syncTime) { |
| | | this.syncTime = syncTime; |
| | | } |
| | | |
| | | public String getSyncErrorMsg() { |
| | | return syncErrorMsg; |
| | | } |
| | | |
| | | public void setSyncErrorMsg(String syncErrorMsg) { |
| | | this.syncErrorMsg = syncErrorMsg; |
| | | } |
| | | |
| | | public Integer getDispatchSyncStatus() { |
| | | return dispatchSyncStatus; |
| | | } |
| | | |
| | | public void setDispatchSyncStatus(Integer dispatchSyncStatus) { |
| | | this.dispatchSyncStatus = dispatchSyncStatus; |
| | | } |
| | | |
| | | public java.util.Date getDispatchSyncTime() { |
| | | return dispatchSyncTime; |
| | | } |
| | | |
| | | public void setDispatchSyncTime(java.util.Date dispatchSyncTime) { |
| | | this.dispatchSyncTime = dispatchSyncTime; |
| | | } |
| | | |
| | | public String getDispatchSyncErrorMsg() { |
| | | return dispatchSyncErrorMsg; |
| | | } |
| | | |
| | | public void setDispatchSyncErrorMsg(String dispatchSyncErrorMsg) { |
| | | this.dispatchSyncErrorMsg = dispatchSyncErrorMsg; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "SysTaskEmergency{" + |