com.alipay.api.response.KoubeiSalesKbassetStuffProduceorderBatchqueryResponse 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.AccessProduceOrder;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.sales.kbasset.stuff.produceorder.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:34
*/
public class KoubeiSalesKbassetStuffProduceorderBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8275618654252874856L;
/**
* 当前是否还有生产指令可以拉取; 注意如果该值为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