|
@@ -14,14 +14,11 @@ import com.sooka.sponest.mobile.base.domain.CenterdataTHydraulicTrack;
|
|
|
import com.sooka.sponest.mobile.base.domain.ModulesServiceNameContants;
|
|
|
import com.sooka.sponest.mobile.data.generalbusiness.domain.AppDailyBO;
|
|
|
import com.sooka.sponest.mobile.data.generalbusiness.domain.AppDailyVO;
|
|
|
-import com.sooka.sponest.mobile.emergency.domain.CenterdataTEmergencyEnterindesmap;
|
|
|
-import com.sooka.sponest.mobile.emergency.domain.CenterdataTEmergencyEnterprise;
|
|
|
-import com.sooka.sponest.mobile.emergency.domain.CenterdataTEmergencyInspectionitemBody;
|
|
|
-import com.sooka.sponest.mobile.emergency.domain.CenterdataTEmergencyPatrolpoint;
|
|
|
+import com.sooka.sponest.mobile.emergency.domain.*;
|
|
|
import com.sooka.sponest.mobile.event.domain.AppDataTAttach;
|
|
|
+import com.sooka.sponest.mobile.log.LogFeignCall;
|
|
|
+import com.sooka.sponest.mobile.remoteapi.domain.*;
|
|
|
import com.sooka.sponest.mobile.remoteapi.factory.RemoteBaseServiceFallbackFactory;
|
|
|
-import com.sooka.sponest.mobile.remoteapi.domain.CenterdataTForestFireteam;
|
|
|
-import com.sooka.sponest.mobile.remoteapi.domain.CenterdataTForestWaterintake;
|
|
|
import com.sooka.sponest.mobile.zhsq.danyuan.domain.AppDanyuanVO;
|
|
|
import com.sooka.sponest.mobile.zhsq.dbrw.domain.AppDbrwVO;
|
|
|
import com.sooka.sponest.mobile.zhsq.fangjian.domain.AppFangjianVO;
|
|
@@ -691,7 +688,30 @@ public interface RemoteDataBaseService {
|
|
|
@PostMapping("/emergency/enterindesmap/selectTBasicEnterpriseByentErpriseMessage")
|
|
|
public R<List<CenterdataTEmergencyInspectionitemBody>> selectTBasicEnterpriseByentErpriseMessage(@RequestBody CenterdataTEmergencyEnterindesmap centerdataTEmergencyEnterindesmap);
|
|
|
|
|
|
+ /**
|
|
|
+ * 应急-查询巡检记录
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ * @Version 1.0
|
|
|
+ * @author wang_xy
|
|
|
+ * @since 2023/3/22 14:08
|
|
|
+ */
|
|
|
+ @PostMapping("/inspectionrecord/appSelectRecord")
|
|
|
+ public R<List<CentereventTEmergencyInspectionrecord>> appSelectRecord(@RequestBody CentereventTEmergencyInspectionrecord centereventTEmergencyInspectionrecord);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 应急-保存巡检记录
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ * @Version 1.0
|
|
|
+ * @author wang_xy
|
|
|
+ * @since 2023/3/22 14:08
|
|
|
+ */
|
|
|
+ @PostMapping("/inspectionrecord/insertCentereventTEmergencyInspectionrecordMessage")
|
|
|
+ public R insertCentereventTEmergencyInspectionrecordMessage(@RequestBody CentereventTEmergencyInspectionrecordBody centereventTEmergencyInspectionrecordBody);
|
|
|
|
|
|
+ @PostMapping("/inspectionrecord/selectCentereventTEmergencyInspectionrecordMessageList")
|
|
|
+ public R selectCentereventTEmergencyInspectionrecordMessageList(@RequestBody CentereventTEmergencyInspectionrecordBdody centereventTEmergencyInspectionrecordBdody);
|
|
|
/*********************************************应急接口end**********************************/
|
|
|
|
|
|
//水利
|
|
@@ -793,5 +813,31 @@ public interface RemoteDataBaseService {
|
|
|
|
|
|
@GetMapping("/commandCenter/getImportAreaListOne")
|
|
|
TableDataInfo getImportAreaListByParams(@RequestParam("params%5BareaName%5D") String areaName, @RequestParam("params%5BprojectType%5D") String projectType, @RequestParam("params%5BprojectLevel%5D") String projectLevel,@RequestParam("pageNum")Integer pageNum, @RequestParam("pageSize")Integer pageSize);
|
|
|
+
|
|
|
+ //查询安全隐患列表
|
|
|
+ @GetMapping("/danger/getAllDanger")
|
|
|
+ R<List<CentereventTEmergencyDanger>> selectDanger(@RequestParam("dangerTitle") String dangerTitle, @RequestParam("enterpriseId") String enterpriseId, @RequestParam("enterpriseName") String enterpriseName);
|
|
|
+
|
|
|
+ //新增安全隐患
|
|
|
+ @PostMapping("/danger")
|
|
|
+ @LogFeignCall
|
|
|
+ R insertDanger(@RequestBody CentereventTEmergencyDanger centereventTEmergencyDanger);
|
|
|
+
|
|
|
+ //根据id查询安全隐患
|
|
|
+ @GetMapping("/danger/{id}")
|
|
|
+ R<CentereventTEmergencyDanger> selectDangerById(@PathVariable("id") String id);
|
|
|
+
|
|
|
+ //更改安全隐患流程
|
|
|
+ @PutMapping("/danger")
|
|
|
+ R updateDanger(@RequestBody CentereventTEmergencyDanger centereventTEmergencyDanger);
|
|
|
+
|
|
|
+ //查询隐患处理过程列表
|
|
|
+ @GetMapping("/danger/getInfoView/{id}")
|
|
|
+ R selectDangerprocess(@PathVariable("id") String id);
|
|
|
+
|
|
|
+ //新增隐患处理过程
|
|
|
+ @PostMapping("/dangerprocess")
|
|
|
+ R insertDangerprocess(@RequestBody CentereventTEmergencyDangerprocess centereventTEmergencyDangerprocess);
|
|
|
+
|
|
|
}
|
|
|
|