|
|
@ -87,14 +87,8 @@ public class InoutServiceImpl implements InoutService { |
|
|
|
|
|
|
|
@Override |
|
|
|
public PageResult<InoutRespVO> myList(InoutPageReqVO pageReqVO) { |
|
|
|
return inoutMapper.myList(pageReqVO); |
|
|
|
} |
|
|
|
@Override |
|
|
|
public PageResult<InoutRespVO> myList(InoutPageReqVO pageReqVO) { |
|
|
|
IPage<AppBrokerageUserRankByPriceRespVO> pageResult = brokerageRecordMapper.selectSummaryPricePageGroupByUserId( |
|
|
|
MyBatisUtils.buildPage(pageReqVO), |
|
|
|
BrokerageRecordBizTypeEnum.ORDER.getType(), BrokerageRecordStatusEnum.SETTLEMENT.getStatus(), |
|
|
|
ArrayUtil.get(pageReqVO.getTimes(), 0), ArrayUtil.get(pageReqVO.getTimes(), 1)); |
|
|
|
IPage<InoutRespVO> pageResult = inoutMapper.myList( |
|
|
|
MyBatisUtils.buildPage(pageReqVO),pageReqVO); |
|
|
|
return new PageResult<>(pageResult.getRecords(), pageResult.getTotal()); |
|
|
|
} |
|
|
|
|
|
|
|