| | |
| | | import com.example.erp.service.sd.ProductService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | |
| | | @ApiOperation("产品查询接口") |
| | | @SaCheckPermission("selectProduct.search") |
| | | @PostMapping ("/{pageNum}/{pageSize}/{glassType}") |
| | | public Result defaultDateProduct(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @PathVariable List<String> glassType, @RequestBody Product product){ |
| | | 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("selectProduct.add") |
| | | @SaCheckPermission("createProduct.add") |
| | | @PostMapping("/saveProduct") |
| | | public Result saveProduct(@RequestBody Map<String,Object> product){ |
| | | return Result.seccess(productService.saveProduct(product)); |
| | | } |
| | | @ApiOperation("其他系统产品保存接口") |
| | | @PostMapping("/otherSysSaveProduct") |
| | | public Result otherSysSaveProduct(@RequestBody Map<String,Object> product){ |
| | | return Result.seccess(productService.saveProduct(product)); |
| | | } |
| | | |
| | | @ApiOperation("产品查重接口") |
| | | @SaCheckPermission("createProduct.add") |
| | | @PostMapping("/selectProduct/{productName}") |
| | | public Result selectProduct(@PathVariable String productName,@RequestBody Map<String,Object> product){ |
| | | return Result.seccess(productService.selectProduct(productName,product)); |
| | | } |
| | | |
| | | @ApiOperation("产品删除接口") |
| | | @SaCheckPermission("selectProduct.delete") |
| | | @PostMapping("/deleteProductById/{id}") |
| | |
| | | } |
| | | |
| | | @ApiOperation("产品审核状态修改接口") |
| | | @SaCheckPermission("selectProduct.review") |
| | | @SaCheckPermission("createProduct.review") |
| | | @PostMapping("/updateProductStateById/{id}/{state}") |
| | | public Result updateProductStateById(@PathVariable Integer id,@PathVariable Integer state){ |
| | | return Result.seccess(productService.updateProductStateById(id,state)); |