chenlu
2024-10-04 7be9b534dcd5cbdb8c24c908d1a738aeec6f52a9
north-glass-erp/src/main/java/com/example/erp/controller/sd/ProductController.java
@@ -30,6 +30,12 @@
    public Result defaultDateProduct(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @PathVariable List<String> glassType, @RequestBody Product product){
        return Result.seccess(productService.defaultDateProduct(pageNum,pageSize,glassType,product));
    }
    @ApiOperation("其他系统获取产品查询接口")
    @PostMapping("/otherSysGetProduct")
    public Result otherSysGetProduct(){
        return Result.seccess(productService.otherSysGetProduct());
    }
    @ApiOperation("产品保存接口")
    @SaCheckPermission("createProduct.add")
    @PostMapping("/saveProduct")