
com.alipay.api.domain.KoubeiMarketingCampaignItemQueryModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 商户商品券查询接口
*
* @author auto create
* @since 1.0, 2016-12-06 10:02:59
*/
public class KoubeiMarketingCampaignItemQueryModel extends AlipayObject {
private static final long serialVersionUID = 7461983169338582835L;
/**
* 商品id
*/
@ApiField("item_id")
private String itemId;
/**
* 操作人id
*/
@ApiField("operator_id")
private String operatorId;
/**
* 操作员类型,MER=商户
*/
@ApiField("operator_type")
private String operatorType;
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getOperatorId() {
return this.operatorId;
}
public void setOperatorId(String operatorId) {
this.operatorId = operatorId;
}
public String getOperatorType() {
return this.operatorType;
}
public void setOperatorType(String operatorType) {
this.operatorType = operatorType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy