jsk 商超
This commit is contained in:
parent
81f11e3800
commit
d663ed2521
|
|
@ -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);
|
||||
}
|
||||
/**
|
||||
* 导出超市商城商品列表
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue