use of com.eservice.api.model.order_change_record.OrderChangeRecordView in project sinsim by WilsonHu.
the class OrderChangeRecordController method getChangeRecordList.
@PostMapping("/getChangeRecordList")
public Result getChangeRecordList(@RequestParam(defaultValue = "0") Integer page, @RequestParam(defaultValue = "0") Integer size, @RequestParam Integer id, @RequestParam Integer orderId) {
PageHelper.startPage(page, size);
List<OrderChangeRecordView> list = orderChangeRecordService.getChangeRecordList(id, orderId);
PageInfo pageInfo = new PageInfo(list);
return ResultGenerator.genSuccessResult(pageInfo);
}
Aggregations