feat: 贷款还款记录分页查询 调整

main
wb3298 2025-10-23 10:28:15 +08:00
parent 7688fec194
commit 8164db8422
1 changed files with 2 additions and 2 deletions

View File

@ -147,13 +147,13 @@ public class LoanService {
}
/**
* 243001-
* 243201-
*
* @author yuchuan
* @since 2025/09/12
*/
public CreditRepayInfoPageQueryResponse creditRepayInfoPageQuery(CreditRepayInfoPageQueryRequest request) {
String url = "/credit-loan-info/find/page";
String url = "/credit-repay-info/find/page";
HttpHeaders headers = new HttpHeaders();
headers.addHeader(API_VERSION, V_2);
HttpResponse<CreditRepayInfoPageQueryResponse> httpResponse = apiClient.post(url, headers, request.toJsonRequest(), CreditRepayInfoPageQueryResponse.class);