All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.invoice.ShopApplicationBatchQueryResponse Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.invoice;

import java.util.*;

public class ShopApplicationBatchQueryResponse{

    /**
     * 当前页数
     */
    private Integer pageNo;
    public Integer getPageNo() {
        return pageNo;
    }
    public void setPageNo(Integer pageNo) {
        this.pageNo = pageNo;
    }
    
    /**
     * 一页记录数
     */
    private Integer pageSize;
    public Integer getPageSize() {
        return pageSize;
    }
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
    
    /**
     * 总记录数
     */
    private Integer totalCount;
    public Integer getTotalCount() {
        return totalCount;
    }
    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }
    
    /**
     * 总页数
     */
    private Integer totalPage;
    public Integer getTotalPage() {
        return totalPage;
    }
    public void setTotalPage(Integer totalPage) {
        this.totalPage = totalPage;
    }
    
    /**
     * 申请单列表
     */
    private List recordList;
    public List getRecordList() {
        return recordList;
    }
    public void setRecordList(List recordList) {
        this.recordList = recordList;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy