查询交易记录 添加付款人字段

This commit is contained in:
2025-01-15 10:45:51 +08:00
parent 51e2c9af02
commit b6a66bed41
6 changed files with 56 additions and 38 deletions

View File

@@ -16,11 +16,11 @@ public interface PaymentInfoMapper extends BaseMapper<PaymentInfo> {
List<PaymentInfoVO> queryPaymentInfo(String paymentType,String payerTotal, String type, String status,
String country, String city, String startTime, String endTime,
int limit, int offset, String order
int limit, int offset, String order, String payer
);
Long queryPaymentInfoCount(String paymentType,String payerTotal, String type, String status,
String country, String city, String startTime, String endTime
String country, String city, String startTime, String endTime, String payer
);
List<Map<String, String>> getCities();