com.alipay.api.domain.BoardQueryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 看板数据查询对象参数
*
* @author auto create
* @since 1.0, 2023-01-16 22:52:13
*/
public class BoardQueryRequest extends AlipayObject {
private static final long serialVersionUID = 1781662758328316378L;
/**
* 人群id,人群概览查询时必传
*/
@ApiField("crowd_id")
private String crowdId;
/**
* 只适用于资产总览查询,exclude_import=true表示查询排除导入用户后的数据看板,否则默认不排除。
*/
@ApiField("exclude_import")
private Boolean excludeImport;
/**
* 数据日期,格式yyyyMMdd
*/
@ApiField("report_date")
private String reportDate;
public String getCrowdId() {
return this.crowdId;
}
public void setCrowdId(String crowdId) {
this.crowdId = crowdId;
}
public Boolean getExcludeImport() {
return this.excludeImport;
}
public void setExcludeImport(Boolean excludeImport) {
this.excludeImport = excludeImport;
}
public String getReportDate() {
return this.reportDate;
}
public void setReportDate(String reportDate) {
this.reportDate = reportDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy