feat:阡陌分页查询接口添加分页参数
parent
0ce78652d2
commit
1deccad4db
|
|
@ -83,4 +83,14 @@ public class InvoiceDepositQueryRequest implements PageApiRequest {
|
|||
*/
|
||||
@SerializedName("settle_account_name")
|
||||
private String settleAccountName;
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
/**
|
||||
* 每页行数
|
||||
*/
|
||||
@SerializedName("current_rows")
|
||||
private Long currentRows;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,6 +50,24 @@ public class InvoiceDepositQueryResponse implements PageApiResponse {
|
|||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*/
|
||||
@SerializedName("total_page")
|
||||
private Long totalPage;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*/
|
||||
@SerializedName("total_rows")
|
||||
private Long totalRows;
|
||||
|
||||
@SerializedName("data")
|
||||
private List<InvoiceDepositData> data;
|
||||
|
||||
|
|
|
|||
|
|
@ -100,4 +100,16 @@ public class InvoiceInfoQueryRequest implements PageApiRequest {
|
|||
*/
|
||||
@SerializedName("settle_account_name")
|
||||
private String settleAccountName;
|
||||
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 每页行数
|
||||
*/
|
||||
@SerializedName("current_rows")
|
||||
private Long currentRows;
|
||||
}
|
||||
|
|
@ -48,6 +48,24 @@ public class InvoiceInfoQueryResponse implements PageApiResponse {
|
|||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*/
|
||||
@SerializedName("total_page")
|
||||
private Long totalPage;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*/
|
||||
@SerializedName("total_rows")
|
||||
private Long totalRows;
|
||||
|
||||
@SerializedName("data")
|
||||
private List<InvoiceData> data;
|
||||
|
||||
|
|
|
|||
|
|
@ -69,4 +69,16 @@ public class InvoiceSettleQueryRequest implements PageApiRequest {
|
|||
*/
|
||||
@SerializedName("loan_acct_no")
|
||||
private String loanAcctNo;
|
||||
|
||||
/**
|
||||
* 当前页数
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 每页行数
|
||||
*/
|
||||
@SerializedName("current_rows")
|
||||
private Long currentRows;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,6 +48,24 @@ public class InvoiceSettleQueryResponse implements PageApiResponse {
|
|||
@SerializedName("sys_time")
|
||||
private String sysTime;
|
||||
|
||||
/**
|
||||
* 当前页码
|
||||
*/
|
||||
@SerializedName("current_page")
|
||||
private Long currentPage;
|
||||
|
||||
/**
|
||||
* 总页数
|
||||
*/
|
||||
@SerializedName("total_page")
|
||||
private Long totalPage;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
*/
|
||||
@SerializedName("total_rows")
|
||||
private Long totalRows;
|
||||
|
||||
@SerializedName("data")
|
||||
private List<InvoiceSettleData> data;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue