feat:阡陌线下充值查询接口添加分页
parent
e1d86ac603
commit
e45963f1bf
|
|
@ -1,6 +1,6 @@
|
|||
package com.czcb.scfs.api.service.v2.pay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.PageApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
|
@ -15,7 +15,7 @@ import lombok.experimental.Accessors;
|
|||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("230907")
|
||||
public class OfflineRechargeDetailQueryRequest implements ApiRequest {
|
||||
public class OfflineRechargeDetailQueryRequest implements PageApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
|
|
@ -81,4 +81,16 @@ public class OfflineRechargeDetailQueryRequest implements ApiRequest {
|
|||
*/
|
||||
@SerializedName("trade_date_end")
|
||||
private String tradeDateEnd;
|
||||
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 每页行数
|
||||
*/
|
||||
@SerializedName("current_rows")
|
||||
private Long currentRows;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,6 +49,24 @@ public class OfflineRechargeDetailQueryResponse implements ApiResponse {
|
|||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*/
|
||||
@SerializedName("total_page")
|
||||
private Long totalPage;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*/
|
||||
@SerializedName("total_rows")
|
||||
private Long totalRows;
|
||||
|
||||
/**
|
||||
* 线下充值明细结果集
|
||||
*/
|
||||
|
|
@ -77,11 +95,6 @@ public class OfflineRechargeDetailQueryResponse implements ApiResponse {
|
|||
*/
|
||||
@SerializedName("account_name")
|
||||
private String accountName;
|
||||
/**
|
||||
* 暂入账账号
|
||||
*/
|
||||
@SerializedName("core_account_no")
|
||||
private String coreAccountNo;
|
||||
/**
|
||||
* 交易金额
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.czcb.scfs.api.service.v2.pay.model;
|
||||
|
||||
import com.czcb.scfs.api.core.ApiRequest;
|
||||
import com.czcb.scfs.api.core.PageApiRequest;
|
||||
import com.czcb.scfs.api.core.agrs.TransType;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
|
@ -15,7 +15,7 @@ import lombok.experimental.Accessors;
|
|||
@Data
|
||||
@Accessors(chain = true)
|
||||
@TransType("230908")
|
||||
public class OfflineRechargeDetailUnmatchedQueryRequest implements ApiRequest {
|
||||
public class OfflineRechargeDetailUnmatchedQueryRequest implements PageApiRequest {
|
||||
/**
|
||||
* 渠道编号
|
||||
*/
|
||||
|
|
@ -81,4 +81,16 @@ public class OfflineRechargeDetailUnmatchedQueryRequest implements ApiRequest {
|
|||
*/
|
||||
@SerializedName("trade_date_end")
|
||||
private String tradeDateEnd;
|
||||
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 每页行数
|
||||
*/
|
||||
@SerializedName("current_rows")
|
||||
private Long currentRows;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,6 +48,24 @@ public class OfflineRechargeDetailUnmatchedQueryResponse implements ApiResponse
|
|||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*/
|
||||
@SerializedName("total_page")
|
||||
private Long totalPage;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*/
|
||||
@SerializedName("total_rows")
|
||||
private Long totalRows;
|
||||
|
||||
/**
|
||||
* 未匹配来账明细结果集
|
||||
*/
|
||||
|
|
@ -86,11 +104,6 @@ public class OfflineRechargeDetailUnmatchedQueryResponse implements ApiResponse
|
|||
*/
|
||||
@SerializedName("account_name")
|
||||
private String accountName;
|
||||
/**
|
||||
* 暂入账账号
|
||||
*/
|
||||
@SerializedName("core_account_no")
|
||||
private String coreAccountNo;
|
||||
/**
|
||||
* 交易金额
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue