“djh”
2025-11-07 87d56f38263bbc1630309f80ffab7a5eb8d8f0a4
multi-admin/src/main/java/com/gkhy/exam/admin/controller/web/MarketController.java
@@ -54,6 +54,17 @@
        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));
    }
    /**
     * 顾客清单新增
@@ -358,6 +369,17 @@
        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);
    }
    /**
     * 月度检查记录新增