
com.alipay.api.domain.KoubeiItemExtitemExistedQueryModel 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, 2016-10-26 18:05:11
*/
public class KoubeiItemExtitemExistedQueryModel extends AlipayObject {
private static final long serialVersionUID = 7577461643266242634L;
/**
* 商品编码列表, 商品编码数量不超过100条。
*/
@ApiListField("code_list")
@ApiField("string")
private List codeList;
public List getCodeList() {
return this.codeList;
}
public void setCodeList(List codeList) {
this.codeList = codeList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy