修改查询交易记录接口
1、添加按id排序 2、添加查询所有国家 3、添加接口,更新用户国家、职业信息
This commit is contained in:
@@ -202,4 +202,10 @@ public class ConvenientInquiryController {
|
||||
public Response<PageBaseResponse<PaymentInfoVO>> queryTransactionRecords(@Valid @RequestBody QueryPaymentInfoDTO queryPaymentInfoDTO){
|
||||
return Response.success(convenientInquiryService.queryTransactionRecords(queryPaymentInfoDTO));
|
||||
}
|
||||
|
||||
@ApiOperation("获取所有国家、城市")
|
||||
@GetMapping("/getCities")
|
||||
public Response<Map<String, List<String>>> getCities(){
|
||||
return Response.success(convenientInquiryService.getCities());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user