
com.alipay.api.domain.AntMerchantExpandAssetproduceAssignSyncModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 生产指令接收反馈接口
*
* @author auto create
* @since 1.0, 2017-06-30 10:14:58
*/
public class AntMerchantExpandAssetproduceAssignSyncModel extends AlipayObject {
private static final long serialVersionUID = 6399341697987159218L;
/**
* 生产指令接收情况,最多200条
*/
@ApiListField("asset_results")
@ApiField("asset_result")
private List assetResults;
public List getAssetResults() {
return this.assetResults;
}
public void setAssetResults(List assetResults) {
this.assetResults = assetResults;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy