feat():完善

dev2
WeiRan 2024-08-23 10:55:18 +08:00
parent 50e104a3d6
commit d7f83fda09
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class ProductApiController {
* @param productListReq
* @return
*/
@RequestMapping(path ="/list",method = RequestMethod.POST)
@PostMapping(path ="/list")
@Operation(summary = "产品列表",description = "查询全部产品信息")
public Result<List<ProductListResp>> selectList(@Validated @RequestBody ProductListReq productListReq){
return Result.success(productApiService.selectList(productListReq));