|
@@ -1,5 +1,6 @@
|
|
|
package com.citu.module.pay.controller.admin.wallet;
|
|
|
|
|
|
+import com.citu.framework.common.enums.UserTypeEnum;
|
|
|
import com.citu.framework.common.pojo.CommonResult;
|
|
|
import com.citu.framework.common.pojo.PageResult;
|
|
|
import com.citu.module.pay.controller.admin.wallet.vo.transaction.PayWalletTransactionPageReqVO;
|
|
@@ -36,6 +37,7 @@ public class PayWalletTransactionController {
|
|
|
@PreAuthorize("@ss.hasPermission('pay:wallet:query')")
|
|
|
public CommonResult<PageResult<PayWalletTransactionRespVO>> getWalletTransactionPage(
|
|
|
@Valid PayWalletTransactionPageReqVO pageReqVO) {
|
|
|
+ pageReqVO.setUserType(UserTypeEnum.MEMBER.getValue());
|
|
|
PageResult<PayWalletTransactionDO> result = payWalletTransactionService.getWalletTransactionPage(pageReqVO);
|
|
|
return success(PayWalletTransactionConvert.INSTANCE.convertPage2(result));
|
|
|
}
|