
com.alipay.api.response.KoubeiSalesKbassetStuffProduceorderBatchqueryResponse Maven / Gradle / Ivy
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.AccessProduceOrder;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.sales.kbasset.stuff.produceorder.batchquery response.
*
* @author auto create
* @since 1.0, 2023-05-29 19:33:45
*/
public class KoubeiSalesKbassetStuffProduceorderBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3834143751854379626L;
/**
* 当前是否还有生产指令可以拉取; 注意如果该值为false, 也只是提示当前没有更多生产指令了, 不代表后面没有生产指令, 商户需要自己制定策略定时去拉取.
*/
@ApiField("has_next_page")
private Boolean hasNextPage;
/**
* 生产单结果列表
*/
@ApiListField("list")
@ApiField("access_produce_order")
private List list;
public void setHasNextPage(Boolean hasNextPage) {
this.hasNextPage = hasNextPage;
}
public Boolean getHasNextPage( ) {
return this.hasNextPage;
}
public void setList(List list) {
this.list = list;
}
public List getList( ) {
return this.list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy