|
@@ -4,24 +4,19 @@ package com.bizmatics.controller.web;
|
|
|
import com.bizmatics.common.core.bean.ApiResult;
|
|
|
import com.bizmatics.common.core.bean.CommonPage;
|
|
|
import com.bizmatics.model.vo.CurrencyDroplistVo;
|
|
|
-import com.bizmatics.model.vo.PatrolInspectionDeviceVo;
|
|
|
import com.bizmatics.model.vo.PatrolInspectionRecordDetailsVo;
|
|
|
import com.bizmatics.model.vo.PatrolInspectionRecordVo;
|
|
|
import com.bizmatics.service.PatrolInspectionRecordService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-
|
|
|
-import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
- * <p>
|
|
|
- * 巡检记录
|
|
|
- * </p>
|
|
|
+ * 巡检管理-巡检记录
|
|
|
*
|
|
|
* @author ya
|
|
|
* @since 2021-10-20
|
|
@@ -36,10 +31,11 @@ public class PatrolInspectionRecordController {
|
|
|
|
|
|
/**
|
|
|
* 巡检管理-巡检记录-按计划查看/按站点查看
|
|
|
- * @param siteId 站点ID
|
|
|
+ *
|
|
|
+ * @param siteId 站点ID
|
|
|
* @param inspectionSchemeId 巡检计划ID
|
|
|
- * @param size 页数
|
|
|
- * @param current 条数
|
|
|
+ * @param size 页数
|
|
|
+ * @param current 条数
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("patrolInspectionRecordList")
|
|
@@ -53,6 +49,7 @@ public class PatrolInspectionRecordController {
|
|
|
|
|
|
/**
|
|
|
* 巡检管理-巡检记录-详情查询
|
|
|
+ *
|
|
|
* @param id 记录ID
|
|
|
* @return
|
|
|
*/
|
|
@@ -64,6 +61,7 @@ public class PatrolInspectionRecordController {
|
|
|
|
|
|
/**
|
|
|
* 巡检管理-巡检记录-按站点查看下拉框
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("patrolInspectionRecordSiteDroplist")
|
|
@@ -74,6 +72,7 @@ public class PatrolInspectionRecordController {
|
|
|
|
|
|
/**
|
|
|
* 巡检管理-巡检记录-按计划查看下拉框
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("patrolInspectionRecordPlanDroplist")
|