whyclxw
2025-01-20 364adf83c47366a5b01dfe005fd0eed11f9346e6
src/main/java/com/whyc/controller/LockInfController.java
@@ -46,9 +46,21 @@
    @ApiOperation(value = "添加锁(批量)")
    @PostMapping("addLock")
    public Response addLock(@RequestParam Integer num,@RequestBody LockInf lockInf){
    public Response addLock(@RequestParam(required = false) Integer num,@RequestBody LockInf lockInf){
        return service.addLock(num,lockInf);
    }
    @ApiOperation(value = "查询屏柜全部类型(下拉)")
    @PostMapping("getScreenType")
    public Response getScreenType(){
        return service.getScreenType();
    }
    @ApiOperation(value = "查询屏柜全部品牌(下拉)")
    @PostMapping("getScreenProduct")
    public Response getScreenProduct(){
        return service.getScreenProduct();
    }
    @ApiOperation(value = "删除锁")