| | |
| | | |
| | | |
| | | /** |
| | | * 日常保养工单创建 组件通过使用部门过滤获取保养标准 |
| | | * 二保 组件通过使用部门过滤获取保养标准 |
| | | * qsw 2023-4-26 |
| | | */ |
| | | @GetMapping("getMaintenanceStandard2List") |
| | |
| | | return Result.ok(maintenanceStandardList); |
| | | } |
| | | |
| | | /** |
| | | * 三保 组件通过使用部门过滤获取保养标准 |
| | | * qsw 2023-12-12 |
| | | */ |
| | | @GetMapping("getMaintenanceStandard3List") |
| | | public Result<?> getMaintenanceStandard3List(@RequestParam("pageNo") Integer pageNo, @RequestParam("pageSize") Integer pageSize, @RequestParam Map<String, Object> params) { |
| | | IPage<Map<String, Object>> maintenanceStandardList = maintenanceStandardService.getMaintenanceStandard3List(pageNo, pageSize, params); |
| | | return Result.ok(maintenanceStandardList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 添加 |