com.alipay.api.domain.KoubeiMarketingDataActivityReportQueryModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 口碑商户营销报表查询
*
* @author auto create
* @since 1.0, 2016-05-30 22:29:14
*/
public class KoubeiMarketingDataActivityReportQueryModel extends AlipayObject {
private static final long serialVersionUID = 5262325883865685285L;
/**
* 查询报表数据的业务日期列表,精确到天,格式为yyyymmdd,支持列表格式,数据按天返回
*/
@ApiField("biz_date")
private String bizDate;
/**
* 活动id
*/
@ApiField("camp_id")
private String campId;
public String getBizDate() {
return this.bizDate;
}
public void setBizDate(String bizDate) {
this.bizDate = bizDate;
}
public String getCampId() {
return this.campId;
}
public void setCampId(String campId) {
this.campId = campId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy