修改查询交易记录接口
1、添加按id排序 2、添加查询所有国家 3、添加接口,更新用户国家、职业信息
This commit is contained in:
@@ -6,6 +6,7 @@ import com.ai.da.model.vo.PaymentInfoVO;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface PaymentInfoMapper extends BaseMapper<PaymentInfo> {
|
||||
|
||||
@@ -15,10 +16,14 @@ 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
|
||||
int limit, int offset, String order
|
||||
);
|
||||
|
||||
Long queryPaymentInfoCount(String paymentType,String payerTotal, String type, String status,
|
||||
String country, String city, String startTime, String endTime
|
||||
);
|
||||
|
||||
List<Map<String, String>> getCities();
|
||||
|
||||
List<Map<String, String>> getCountries();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user