com.alipay.api.response.KoubeiMarketingDataAlisisReportBatchqueryResponse 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.AlisisReport;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.data.alisis.report.batchquery response.
*
* @author auto create
* @since 1.0, 2017-06-16 20:33:21
*/
public class KoubeiMarketingDataAlisisReportBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5412992987613445646L;
/**
* 报表列表信息
*/
@ApiListField("report_list")
@ApiField("alisis_report")
private List reportList;
/**
* 总记录数
*/
@ApiField("total_count")
private String totalCount;
public void setReportList(List reportList) {
this.reportList = reportList;
}
public List getReportList( ) {
return this.reportList;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public String getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy