jsk 商超

This commit is contained in:
skjia 2025-06-09 08:50:46 +08:00
parent 81f11e3800
commit d663ed2521
1 changed files with 12 additions and 2 deletions

View File

@ -48,7 +48,17 @@ public class SupermarketProductController extends BaseController {
List<SupermarketProduct> list = supermarketProductService.selectSupermarketProductList(supermarketProduct);
return getDataTable(list);
}
/**
* 查询超市商城商品列表
*/
@ApiOperation(value = "查询商品列表")
//@RequiresPermissions("supermarket:product:list")
@GetMapping("/getAddList")
public TableDataInfo getAddList(SupermarketProduct supermarketProduct) {
startPage();
List<SupermarketProduct> list = supermarketProductService.selectSupermarketProductList(supermarketProduct);
return getDataTable(list);
}
/**
* 导出超市商城商品列表
*/