refactor: 调整巡检模块接口路径为 safeProduction
| | |
| | | */ |
| | | @Tag(name = "隐患上报") |
| | | @RestController |
| | | @RequestMapping("/device/hazardReport") |
| | | @RequestMapping("/safeProduction/hazardReport") |
| | | @RequiredArgsConstructor |
| | | public class HazardReportController { |
| | | |
| | |
| | | */ |
| | | @Tag(name = "线路巡检") |
| | | @RestController |
| | | @RequestMapping("/device/lineInspection") |
| | | @RequestMapping("/safeProduction/lineInspection") |
| | | @RequiredArgsConstructor |
| | | public class LineInspectionController { |
| | | |
| | |
| | | */ |
| | | @Tag(name = "安全设施巡检") |
| | | @RestController |
| | | @RequestMapping("/device/safetyFacility") |
| | | @RequestMapping("/safeProduction/safetyFacility") |
| | | @RequiredArgsConstructor |
| | | public class SafetyFacilityController { |
| | | |