feat():完善
parent
50e104a3d6
commit
d7f83fda09
|
@ -38,7 +38,7 @@ public class ProductApiController {
|
||||||
* @param productListReq
|
* @param productListReq
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@RequestMapping(path ="/list",method = RequestMethod.POST)
|
@PostMapping(path ="/list")
|
||||||
@Operation(summary = "产品列表",description = "查询全部产品信息")
|
@Operation(summary = "产品列表",description = "查询全部产品信息")
|
||||||
public Result<List<ProductListResp>> selectList(@Validated @RequestBody ProductListReq productListReq){
|
public Result<List<ProductListResp>> selectList(@Validated @RequestBody ProductListReq productListReq){
|
||||||
return Result.success(productApiService.selectList(productListReq));
|
return Result.success(productApiService.selectList(productListReq));
|
||||||
|
|
Loading…
Reference in New Issue