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

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

The newest version!
package eleme.openapi.sdk.api.entity.invoice;

import java.util.*;

public class ShopApplicationBatchQueryRequest{

    /**
     * 店铺ID列表
     */
    private List shopIdList;
    public List getShopIdList() {
        return shopIdList;
    }
    public void setShopIdList(List shopIdList) {
        this.shopIdList = shopIdList;
    }
    
    /**
     * 申请状态
     */
    private String status;
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    
    /**
     * 页数
     */
    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;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy