|
@@ -82,8 +82,10 @@ public class OrderGoodsController extends BaseController {
|
|
|
@ApiOperation("获取订单商品重复购买详细信息")
|
|
|
@PreAuthorize("@ss.hasPermi('system:goods:query')")
|
|
|
@GetMapping("/rebuyInfo")
|
|
|
- public AjaxResult<OrderGoodsVo> rebuyInfo(OrderGoodsQueryBo bo) {
|
|
|
- return AjaxResult.success(iOrderGoodsService.rebuyInfo(bo));
|
|
|
+ public TableDataInfo<OrderGoodsVo> rebuyInfo(OrderGoodsQueryBo bo) {
|
|
|
+ startPage();
|
|
|
+ List<OrderGoodsVo> list = iOrderGoodsService.rebuyInfo(bo);
|
|
|
+ return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
/**
|