com.alipay.api.response.KoubeiSalesKbassetStuffQuerystockinorderQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.StuffStockInOrder;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.sales.kbasset.stuff.querystockinorder.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 21:02:46
*/
public class KoubeiSalesKbassetStuffQuerystockinorderQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6652966451364766224L;
/**
* 异常码
*/
@ApiField("error_code")
private String errorCode;
/**
* 异常描述
*/
@ApiField("error_desc")
private String errorDesc;
/**
* 扩展字段
*/
@ApiField("ext_info")
private String extInfo;
/**
* 分页查询当前页码
*/
@ApiField("page_no")
private Long pageNo;
/**
* 分页查询每页数据量
*/
@ApiField("page_size")
private Long pageSize;
/**
* 入库单
*/
@ApiListField("stock_in_orders")
@ApiField("stuff_stock_in_order")
private List stockInOrders;
/**
* 本次调用是否成功
*/
@ApiField("success")
private Boolean success;
/**
* 查询数据总量
*/
@ApiField("total_count")
private Long totalCount;
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorCode( ) {
return this.errorCode;
}
public void setErrorDesc(String errorDesc) {
this.errorDesc = errorDesc;
}
public String getErrorDesc( ) {
return this.errorDesc;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getExtInfo( ) {
return this.extInfo;
}
public void setPageNo(Long pageNo) {
this.pageNo = pageNo;
}
public Long getPageNo( ) {
return this.pageNo;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setStockInOrders(List stockInOrders) {
this.stockInOrders = stockInOrders;
}
public List getStockInOrders( ) {
return this.stockInOrders;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getSuccess( ) {
return this.success;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy