| | |
| | | return CommonResult.success(customerInventoryService.selectCustomerInventoryList(customerInventory)); |
| | | } |
| | | |
| | | /** |
| | | * 顾客清单列表所有 |
| | | * @param customerInventory |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "顾客清单列表(所有)") |
| | | @GetMapping("/inventory/listAll") |
| | | public CommonResult listCustomerAll(CustomerInventory customerInventory){ |
| | | return CommonResult.success(customerInventoryService.selectCustomerInventoryListAll(customerInventory)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 顾客清单新增 |
| | |
| | | return CommonResult.success(monthlyInspectionService.selectMonthlyInspectionList(monthlyInspection)); |
| | | } |
| | | |
| | | /** |
| | | * 月度检查记录id查 |
| | | * @param monthlyId |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "月度检查记录id查") |
| | | @GetMapping("/monthly/listByid") |
| | | public CommonResult listMonthlyInspectionByid(@RequestParam("monthlyId") Integer monthlyId){ |
| | | return monthlyInspectionService.listMonthlyInspectionById(monthlyId); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 月度检查记录新增 |