com.alipay.api.response.KoubeiMarketingDataRetailDmQueryResponse 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
alipay-sdk project for Spring Project
The newest version!
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.DmActivityShopData;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.data.retail.dm.query response.
*
* @author auto create
* @since 1.0, 2017-05-16 17:02:42
*/
public class KoubeiMarketingDataRetailDmQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5695412138263561228L;
/**
* 内容ID
*/
@ApiField("content_id")
private String contentId;
/**
* 店面DM营销数据,包括商品的PV、UV、曝光。
*/
@ApiListField("dm_marketing_datas")
@ApiField("dm_activity_shop_data")
private List dmMarketingDatas;
/**
* 商品码
*/
@ApiField("item_code")
private String itemCode;
/**
* 商品名称
*/
@ApiField("item_name")
private String itemName;
public void setContentId(String contentId) {
this.contentId = contentId;
}
public String getContentId( ) {
return this.contentId;
}
public void setDmMarketingDatas(List dmMarketingDatas) {
this.dmMarketingDatas = dmMarketingDatas;
}
public List getDmMarketingDatas( ) {
return this.dmMarketingDatas;
}
public void setItemCode(String itemCode) {
this.itemCode = itemCode;
}
public String getItemCode( ) {
return this.itemCode;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getItemName( ) {
return this.itemName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy