feat:添加米阳融资接口
parent
b99f650bea
commit
d2feb15b24
|
|
@ -1,9 +1,9 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay;
|
||||
package com.czcb.scfs.api.service.v2.entpay;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiClient;
|
||||
import com.czcb.scfs.api.core.http.HttpHeaders;
|
||||
import com.czcb.scfs.api.core.http.HttpResponse;
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.entpay.model.*;
|
||||
import com.czcb.scfs.api.service.v2.entpay.model.*;
|
||||
|
||||
/**
|
||||
* 米阳受托支付功能
|
||||
|
|
@ -12,6 +12,7 @@ import com.czcb.scfs.api.service.v2.customization.miyang.entpay.model.*;
|
|||
* @since 2024-07-29
|
||||
*/
|
||||
public class EntPayService {
|
||||
|
||||
private final ApiClient apiClient;
|
||||
|
||||
public EntPayService(ApiClient apiClient) {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.entpay.model;
|
||||
package com.czcb.scfs.api.service.v2.entpay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
package com.czcb.scfs.api.service.v2.order;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiClient;
|
||||
import com.czcb.scfs.api.core.http.HttpHeaders;
|
||||
import com.czcb.scfs.api.core.http.HttpResponse;
|
||||
import com.czcb.scfs.api.service.v2.order.model.TradeOrdersSltCreateRequest;
|
||||
import com.czcb.scfs.api.service.v2.order.model.TradeOrdersSltCreateResponse;
|
||||
import com.czcb.scfs.api.service.v2.order.model.TradeOrdersSltSettleRequest;
|
||||
import com.czcb.scfs.api.service.v2.order.model.TradeOrdersSltSettleResponse;
|
||||
|
||||
/**
|
||||
* 米阳贸易订单功能
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
public class TradeOrdersSltService {
|
||||
|
||||
private final ApiClient apiClient;
|
||||
|
||||
public TradeOrdersSltService(ApiClient apiClient) {
|
||||
this.apiClient = apiClient;
|
||||
}
|
||||
|
||||
/**
|
||||
* 300607-贸易订单登记
|
||||
*/
|
||||
public TradeOrdersSltCreateResponse create(TradeOrdersSltCreateRequest request) {
|
||||
String url = "/trade-orders-slt/create";
|
||||
HttpResponse<TradeOrdersSltCreateResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), TradeOrdersSltCreateResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* 300608-贸易订单-回款清算
|
||||
*/
|
||||
public TradeOrdersSltSettleResponse settle(TradeOrdersSltSettleRequest request) {
|
||||
String url = "/trade-orders-slt/settle";
|
||||
HttpResponse<TradeOrdersSltSettleResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), TradeOrdersSltSettleResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,151 @@
|
|||
package com.czcb.scfs.api.service.v2.order.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 300607-贸易订单登记
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300607")
|
||||
public class TradeOrdersSltCreateRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
/**
|
||||
* 订单编号
|
||||
*/
|
||||
@SerializedName("order_no")
|
||||
private String orderNo;
|
||||
|
||||
/**
|
||||
* 订单类型 9、采购订单
|
||||
*/
|
||||
@SerializedName("order_type")
|
||||
private String orderType;
|
||||
|
||||
/**
|
||||
* 下单时间
|
||||
*/
|
||||
@SerializedName("order_time")
|
||||
private String orderTime;
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
*/
|
||||
@SerializedName("order_amount")
|
||||
private BigDecimal orderAmount;
|
||||
|
||||
/**
|
||||
* 付款账户账号(贸易公司A1/服务公司A1)
|
||||
*/
|
||||
@SerializedName("account_no")
|
||||
private String accountNo;
|
||||
|
||||
/**
|
||||
* 付款账户户名(贸易公司A1/服务公司A1)
|
||||
*/
|
||||
@SerializedName("account_name")
|
||||
private String accountName;
|
||||
|
||||
/**
|
||||
* 收款账户账号(上游公司账号)
|
||||
*/
|
||||
@SerializedName("opp_account_no")
|
||||
private String oppAccountNo;
|
||||
|
||||
/**
|
||||
* 收款账户户名(上游公司户名)
|
||||
*/
|
||||
@SerializedName("opp_account_name")
|
||||
private String oppAccountName;
|
||||
|
||||
/**
|
||||
* 项目编号
|
||||
*/
|
||||
@SerializedName("project_no")
|
||||
private String projectNo;
|
||||
|
||||
/**
|
||||
* 项目名称
|
||||
*/
|
||||
@SerializedName("project_name")
|
||||
private String projectName;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
@SerializedName("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 分润信息List(平台服务费收取)
|
||||
*/
|
||||
@SerializedName("settleList")
|
||||
private List<SettleAccList> settleList;
|
||||
|
||||
@Data
|
||||
public static class SettleAccList implements Serializable {
|
||||
/**
|
||||
* 收款账户账号
|
||||
*/
|
||||
@SerializedName("settle_account_no")
|
||||
private String settleAccountNo;
|
||||
|
||||
/**
|
||||
* 收款账户户名
|
||||
*/
|
||||
@SerializedName("settle_account_name")
|
||||
private String settleAccountName;
|
||||
|
||||
/**
|
||||
* 收款金额
|
||||
*/
|
||||
@SerializedName("settle_amount")
|
||||
private BigDecimal settleAmount;
|
||||
|
||||
/**
|
||||
* 收款说明
|
||||
*/
|
||||
@SerializedName("settle_note")
|
||||
private String settleNote;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.order.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300607-贸易订单登记
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class TradeOrdersSltCreateResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -0,0 +1,69 @@
|
|||
package com.czcb.scfs.api.service.v2.order.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 300608-贸易订单-回款清算
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300608")
|
||||
public class TradeOrdersSltSettleRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
|
||||
|
||||
|
||||
private String order_no;//订单编号
|
||||
|
||||
private String account_no;//付款账户账号(贸易公司A2/服务公司A2)
|
||||
|
||||
private String account_name;//付款账户户名(贸易公司A2/服务公司A2)
|
||||
|
||||
private BigDecimal pay_amount;//支付金额=收款金额+sum(分润金额) 大于0
|
||||
|
||||
private String opp_account_no;//收款账户账号(贸易公司A1/服务公司A1)
|
||||
|
||||
private String opp_account_name;//收款账户户名(贸易公司A1/服务公司A1)
|
||||
|
||||
private BigDecimal receive_amount;//收款金额 大于等于0
|
||||
|
||||
private String remark;//摘要
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.order.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300608-贸易订单-回款清算
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class TradeOrdersSltSettleResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill;
|
||||
package com.czcb.scfs.api.service.v2.waybill;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiClient;
|
||||
import com.czcb.scfs.api.core.http.HttpHeaders;
|
||||
import com.czcb.scfs.api.core.http.HttpResponse;
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.waybill.model.*;
|
||||
import com.czcb.scfs.api.service.v2.waybill.model.*;
|
||||
|
||||
/**
|
||||
* 米阳运单功能
|
||||
|
|
@ -89,5 +89,43 @@ public class WayBillService {
|
|||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 300511-提前结费
|
||||
*/
|
||||
public WayBillCreditPayResponse creditPay(WayBillCreditPayRequest request) {
|
||||
String url = "/waybill/credit-pay";
|
||||
HttpResponse<WayBillCreditPayResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), WayBillCreditPayResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* 300512-提前结费批量
|
||||
*/
|
||||
public WayBillCreditPayBatchResponse creditPayBatch(WayBillCreditPayBatchRequest request) {
|
||||
String url = "/waybill/credit-pay-batch";
|
||||
HttpResponse<WayBillCreditPayBatchResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), WayBillCreditPayBatchResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* 300513-贷款还款
|
||||
*/
|
||||
public WayBillRepayResponse repay(WayBillRepayRequest request) {
|
||||
String url = "/waybill/repay";
|
||||
HttpResponse<WayBillRepayResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), WayBillRepayResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* 300514-回款清分
|
||||
*/
|
||||
public WayBillBackFundSettleResponse backFundSettle(WayBillBackFundSettleRequest request) {
|
||||
String url = "/waybill/back-fund-settle";
|
||||
HttpResponse<WayBillBackFundSettleResponse> httpResponse = apiClient.post(url, HttpHeaders.apiVersionV2(),
|
||||
request.toJsonRequest(), WayBillBackFundSettleResponse.class);
|
||||
return httpResponse.getServiceResponse();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 300514-回款清分
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300514")
|
||||
public class WayBillBackFundSettleRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
/**
|
||||
* 付款账号(分包方A2账号)
|
||||
*/
|
||||
@SerializedName("account_no")
|
||||
private String accountNo;
|
||||
|
||||
/**
|
||||
* 付款户名(分包方A2户名)
|
||||
*/
|
||||
@SerializedName("account_name")
|
||||
private String accountName;
|
||||
|
||||
/**
|
||||
* 付款金额
|
||||
*/
|
||||
@SerializedName("pay_amount")
|
||||
private BigDecimal payAmount;
|
||||
|
||||
/**
|
||||
* 收款账号(分包方A1账号)
|
||||
*/
|
||||
@SerializedName("opp_account_no")
|
||||
private String oppAccountNo;
|
||||
|
||||
/**
|
||||
* 收款户名(分包方A1户名)
|
||||
*/
|
||||
@SerializedName("opp_account_name")
|
||||
private String oppAccountName;
|
||||
|
||||
/**
|
||||
* 收款金额(分包方分润金额)
|
||||
*/
|
||||
@SerializedName("receive_amount")
|
||||
private BigDecimal receiveAmount;
|
||||
|
||||
/**
|
||||
* 收款账号1(米阳A2账号)
|
||||
*/
|
||||
@SerializedName("opp_account_no_1")
|
||||
private String oppAccountNo1;
|
||||
|
||||
/**
|
||||
* 收款户名1(米阳A2户名)
|
||||
*/
|
||||
@SerializedName("opp_account_name_1")
|
||||
private String oppAccountName1;
|
||||
|
||||
/**
|
||||
* 收款金额1(米阳回款金额)
|
||||
*/
|
||||
@SerializedName("receive_amount_1")
|
||||
private BigDecimal receiveAmount1;
|
||||
|
||||
/**
|
||||
* 验证码,短信验证码(收款账户对应的手机号接收的验证码)短信类型:9,短信模版编号:101311
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String verifyCode;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
@SerializedName("remork")
|
||||
private String remark;
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300514-回款清分
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class WayBillBackFundSettleResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -0,0 +1,173 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 300512-提前结费批量
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300512")
|
||||
public class WayBillCreditPayBatchRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
/**
|
||||
* 运单信息List
|
||||
*/
|
||||
@SerializedName("order_list")
|
||||
private List<WayOrder> orderList;
|
||||
|
||||
/**
|
||||
* 产品编号,贷款产品ID
|
||||
*/
|
||||
@SerializedName("product_id")
|
||||
private String productId;
|
||||
|
||||
/**
|
||||
* 合同编号
|
||||
*/
|
||||
@SerializedName("contract_no")
|
||||
private String contractNo;
|
||||
|
||||
/**
|
||||
* 借款期限
|
||||
*/
|
||||
@SerializedName("receipt_period")
|
||||
private String receiptPeriod;
|
||||
|
||||
/**
|
||||
* 支付时间
|
||||
*/
|
||||
@SerializedName("pay_time")
|
||||
private String payTime;
|
||||
|
||||
/**
|
||||
* 提前结费金额(收款金额2总和)
|
||||
*/
|
||||
@SerializedName("pay_amount")
|
||||
private BigDecimal payAmount;
|
||||
|
||||
/**
|
||||
* 收款账户账号(车队长A1,贷款申请账号)
|
||||
*/
|
||||
@SerializedName("opp_account_no")
|
||||
private String oppAccountNo;
|
||||
|
||||
/**
|
||||
* 收款账户户名(车队长A1,贷款申请户名)
|
||||
*/
|
||||
@SerializedName("opp_account_name")
|
||||
private String oppAccountName;
|
||||
|
||||
/**
|
||||
* 验证码,短信验证码(收款账户对应的手机号接收的验证码)短信类型:9,短信模版编号:101309
|
||||
*/
|
||||
@SerializedName("verify_code")
|
||||
private String verifyCode;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
@SerializedName("remork")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 受托支付账号(米阳A1)
|
||||
*/
|
||||
@SerializedName("st_account_no")
|
||||
private String stAccountNo;
|
||||
|
||||
/**
|
||||
* 受托支付户名(米阳A1)
|
||||
*/
|
||||
@SerializedName("st_account_name")
|
||||
private String stAccountName;
|
||||
|
||||
/**
|
||||
* 受托支付金额(卸土费)
|
||||
*/
|
||||
@SerializedName("st_pay_amount")
|
||||
private BigDecimal stPayAmount;
|
||||
|
||||
/**
|
||||
* 商户资料信息
|
||||
*/
|
||||
@SerializedName("file_list")
|
||||
private List<FileList> fileList;
|
||||
|
||||
|
||||
@Data
|
||||
public static class WayOrder implements Serializable {
|
||||
/**
|
||||
* 运单编号
|
||||
*/
|
||||
@SerializedName("order_no")
|
||||
private String orderNo;
|
||||
|
||||
/**
|
||||
* 项目编号
|
||||
*/
|
||||
@SerializedName("project_no")
|
||||
private String projectNo;
|
||||
|
||||
/**
|
||||
* 收款金额2(车队长应收金额)
|
||||
*/
|
||||
@SerializedName("opp2_amount")
|
||||
private BigDecimal opp2Amount;
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class FileList implements Serializable {
|
||||
/**
|
||||
* 文件编号
|
||||
*/
|
||||
@SerializedName("file_no")
|
||||
private String fileNo;
|
||||
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
@SerializedName("file_type")
|
||||
private String fileType;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300512-提前结费批量
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class WayBillCreditPayBatchResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -0,0 +1,157 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 300511-提前结费
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300511")
|
||||
public class WayBillCreditPayRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
/**
|
||||
* 运单编号
|
||||
*/
|
||||
@SerializedName("order_no")
|
||||
private String orderNo;
|
||||
|
||||
/**
|
||||
* 项目编号
|
||||
*/
|
||||
@SerializedName("project_no")
|
||||
private String projectNo;
|
||||
|
||||
/**
|
||||
* 产品编号,贷款产品ID
|
||||
*/
|
||||
@SerializedName("product_id")
|
||||
private String productId;
|
||||
|
||||
/**
|
||||
* 合同编号
|
||||
*/
|
||||
@SerializedName("contract_no")
|
||||
private String contractNo;
|
||||
|
||||
/**
|
||||
* 借款期限
|
||||
*/
|
||||
@SerializedName("receipt_period")
|
||||
private String receiptPeriod;
|
||||
|
||||
/**
|
||||
* 支付时间
|
||||
*/
|
||||
@SerializedName("pay_time")
|
||||
private String payTime;
|
||||
|
||||
/**
|
||||
* 提前结费金额(收款金额2总和)
|
||||
*/
|
||||
@SerializedName("pay_amount")
|
||||
private BigDecimal payAmount;
|
||||
|
||||
/**
|
||||
* 收款账户账号(车队长A1,贷款申请账号)
|
||||
*/
|
||||
@SerializedName("opp_account_no")
|
||||
private String oppAccountNo;
|
||||
|
||||
/**
|
||||
* 收款账户户名(车队长A1,贷款申请户名)
|
||||
*/
|
||||
@SerializedName("opp_account_name")
|
||||
private String oppAccountName;
|
||||
|
||||
/**
|
||||
* 验证码,短信验证码(收款账户对应的手机号接收的验证码)短信类型:9,短信模版编号:101309
|
||||
*/
|
||||
@SerializedName("verify_code")
|
||||
private String verifyCode;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
@SerializedName("remork")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 受托支付账号(米阳A1)
|
||||
*/
|
||||
@SerializedName("st_account_no")
|
||||
private String stAccountNo;
|
||||
|
||||
/**
|
||||
* 受托支付户名(米阳A1)
|
||||
*/
|
||||
@SerializedName("st_account_name")
|
||||
private String stAccountName;
|
||||
|
||||
/**
|
||||
* 受托支付金额(卸土费)
|
||||
*/
|
||||
@SerializedName("st_pay_amount")
|
||||
private BigDecimal stPayAmount;
|
||||
|
||||
/**
|
||||
* 商户资料信息
|
||||
*/
|
||||
@SerializedName("file_list")
|
||||
private List<FileList> fileList;
|
||||
|
||||
@Data
|
||||
public static class FileList implements Serializable {
|
||||
/**
|
||||
* 文件编号
|
||||
*/
|
||||
@SerializedName("file_no")
|
||||
private String fileNo;
|
||||
|
||||
/**
|
||||
* 文件类型
|
||||
*/
|
||||
@SerializedName("file_type")
|
||||
private String fileType;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300511-提前结费
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class WayBillCreditPayResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300513-贷款还款
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("300513")
|
||||
public class WayBillRepayRequest implements ApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
@SerializedName("channel_no")
|
||||
private String channelNo;
|
||||
|
||||
/**
|
||||
* 应用编号
|
||||
*/
|
||||
@SerializedName("app_no")
|
||||
private String appNo;
|
||||
|
||||
/**
|
||||
* 流水号
|
||||
*/
|
||||
@SerializedName("serial_no")
|
||||
private String serialNo;
|
||||
|
||||
/**
|
||||
* 操作日期 yyyy-MM-dd
|
||||
*/
|
||||
@SerializedName("trans_date")
|
||||
private String transDate;
|
||||
|
||||
/**
|
||||
* 操作时间 yyyy-MM-dd HH:mm:ss
|
||||
*/
|
||||
@SerializedName("trans_tradetime")
|
||||
private String transTradeTime;
|
||||
|
||||
/**
|
||||
* 提前结费流水号
|
||||
*/
|
||||
@SerializedName("auth_serial_no")
|
||||
private String authSerialNo;
|
||||
|
||||
/**
|
||||
* 产品编号,贷款产品ID
|
||||
*/
|
||||
@SerializedName("product_id")
|
||||
private String productId;
|
||||
|
||||
/**
|
||||
* 账号,申请人A1账户账号(车队长A1)
|
||||
*/
|
||||
@SerializedName("account_no")
|
||||
private String accountNo;
|
||||
|
||||
/**
|
||||
* 户名,申请人A1账户户名(车队长A1)
|
||||
*/
|
||||
@SerializedName("account_name")
|
||||
private String accountName;
|
||||
|
||||
/**
|
||||
* 收款账号(退款收款账户)
|
||||
*/
|
||||
@SerializedName("opp_account_no")
|
||||
private String oppAccountNo;
|
||||
|
||||
/**
|
||||
* 收款户名(退款收款账户)
|
||||
*/
|
||||
@SerializedName("opp_account_name")
|
||||
private String oppAccountName;
|
||||
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
@SerializedName("remork")
|
||||
private String remark;
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 300513-贷款还款
|
||||
*
|
||||
* @author H.T
|
||||
* @since 2024-07-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class WayBillRepayResponse implements ApiResponse {
|
||||
/**
|
||||
* 000000:表示成功
|
||||
*/
|
||||
@SerializedName("recode")
|
||||
private String recode;
|
||||
|
||||
/**
|
||||
* 结果信息
|
||||
*/
|
||||
@SerializedName("recode_info")
|
||||
private String recodeInfo;
|
||||
|
||||
/**
|
||||
* 系统流水号
|
||||
*/
|
||||
@SerializedName("sys_serial_no")
|
||||
private String sysSerialNo;
|
||||
|
||||
/**
|
||||
* 系统日期(yyyy-MM-dd)
|
||||
*/
|
||||
@SerializedName("sys_date")
|
||||
private String sysDate;
|
||||
|
||||
/**
|
||||
* 系统时间(yyyy-MM-dd HH:mm:ss)
|
||||
*/
|
||||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.czcb.scfs.api.service.v2.customization.miyang.waybill.model;
|
||||
package com.czcb.scfs.api.service.v2.waybill.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiResponse;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
|
@ -10,8 +10,9 @@ import com.czcb.scfs.api.service.v2.bmd.BmdService;
|
|||
import com.czcb.scfs.api.service.v2.cat.order.OrderService;
|
||||
import com.czcb.scfs.api.service.v2.cat.project.ProjectService;
|
||||
import com.czcb.scfs.api.service.v2.communal.CommunalDataService;
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.entpay.EntPayService;
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.waybill.WayBillService;
|
||||
import com.czcb.scfs.api.service.v2.entpay.EntPayService;
|
||||
import com.czcb.scfs.api.service.v2.order.TradeOrdersSltService;
|
||||
import com.czcb.scfs.api.service.v2.waybill.WayBillService;
|
||||
import com.czcb.scfs.api.service.v2.face.FaceService;
|
||||
import com.czcb.scfs.api.service.v2.file.FileService;
|
||||
import com.czcb.scfs.api.service.v2.invoice.InvoiceService;
|
||||
|
|
@ -217,4 +218,13 @@ public class ScfsAutoConfiguration {
|
|||
return new WayBillService(apiClient);
|
||||
}
|
||||
|
||||
/**
|
||||
* 米阳贸易订单功能
|
||||
*/
|
||||
@Bean
|
||||
@ConditionalOnMissingBean
|
||||
public TradeOrdersSltService tradeOrdersSltService(ApiClient apiClient) {
|
||||
return new TradeOrdersSltService(apiClient);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package com.czcb.scfs.api.test.service;
|
||||
|
||||
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.entpay.EntPayService;
|
||||
import com.czcb.scfs.api.service.v2.customization.miyang.entpay.model.*;
|
||||
import com.czcb.scfs.api.service.v2.entpay.EntPayService;
|
||||
import com.czcb.scfs.api.service.v2.entpay.model.*;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.slf4j.Logger;
|
||||
|
|
|
|||
Loading…
Reference in New Issue