| | |
| | | |
| | | /** 急救转运创建接口路径 */ |
| | | private String emergencyCreatePath = "/admin_save_19.gds"; |
| | | |
| | | private String emergencyUpdatePath="/admin_save_20.asp"; |
| | | |
| | | /** 调度单创建接口路径 */ |
| | | private String dispatchCreatePath = "/admin_save_24.gds"; |
| | | |
| | | /** 调度单更新接口路径(车辆/人员变更) */ |
| | | private String dispatchUpdatePath = "/admin_save_25.asp"; |
| | | |
| | | /** 任务状态查询接口路径(已弃用,直接查询SQL Server数据库) */ |
| | | @Deprecated |
| | |
| | | this.dispatchCreatePath = dispatchCreatePath; |
| | | } |
| | | |
| | | public String getDispatchUpdatePath() { |
| | | return dispatchUpdatePath; |
| | | } |
| | | |
| | | public void setDispatchUpdatePath(String dispatchUpdatePath) { |
| | | this.dispatchUpdatePath = dispatchUpdatePath; |
| | | } |
| | | |
| | | public int getConnectTimeout() { |
| | | return connectTimeout; |
| | | } |
| | |
| | | public String getEmergencyCreateUrl() { |
| | | return baseUrl + emergencyCreatePath; |
| | | } |
| | | |
| | | public String getEmergencyUpdateUrl(){ |
| | | return baseUrl+emergencyUpdatePath; |
| | | } |
| | | |
| | | /** |
| | | * 获取完整的调度单创建URL |
| | |
| | | return baseUrl + dispatchCreatePath; |
| | | } |
| | | |
| | | /** |
| | | * 获取完整的调度单更新URL(车辆/人员变更) |
| | | */ |
| | | public String getDispatchUpdateUrl() { |
| | | return baseUrl + dispatchUpdatePath; |
| | | } |
| | | |
| | | public String getStatusQueryPath() { |
| | | return statusQueryPath; |
| | | } |