feat: 发票流水查询

main
13009 2024-07-12 16:06:51 +08:00
parent 6b8da80513
commit 4a2f85ea7e
4 changed files with 10 additions and 10 deletions

View File

@ -93,8 +93,8 @@ public class InvoiceQueryRequest implements PageApiRequest {
private String settleAccountName;
@SerializedName("current_page")
private String currentPage;
private Long currentPage;
@SerializedName("current_rows")
private String currentRows;
private Long currentRows;
}

View File

@ -49,13 +49,13 @@ public class InvoiceQueryResponse implements PageApiResponse {
private List<InvoiceData> data;
@SerializedName("current_page")
private String currentPage;
private Long currentPage;
@SerializedName("total_page")
private String totalPage;
private Long totalPage;
@SerializedName("total_rows")
private String totalRows;
private Long totalRows;
@Data
public static class InvoiceData implements Serializable {

View File

@ -51,8 +51,8 @@ public class InvoiceTransQueryRequest implements PageApiRequest {
private String invoiceNo;
@SerializedName("current_page")
private String currentPage;
private Long currentPage;
@SerializedName("current_rows")
private String currentRows;
private Long currentRows;
}

View File

@ -49,13 +49,13 @@ public class InvoiceTransQueryResponse implements PageApiResponse {
private List<InvoiceTransData> data;
@SerializedName("current_page")
private String currentPage;
private Long currentPage;
@SerializedName("total_page")
private String totalPage;
private Long totalPage;
@SerializedName("total_rows")
private String totalRows;
private Long totalRows;
@Data
public static class InvoiceTransData implements Serializable {