com.alipay.api.domain.DataDim Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 数据维度关系模型
*
* @author auto create
* @since 1.0, 2017-08-10 16:22:11
*/
public class DataDim extends AlipayObject {
private static final long serialVersionUID = 6362995152336886218L;
/**
* 维度名称,代表维度层级含义
不同维度间用“|”分割
*/
@ApiField("dim_name")
private String dimName;
/**
* 维度类型,并级或者层级
parallel 并列维度
hierarchical 层级维度
*/
@ApiField("dim_type")
private String dimType;
/**
* 维度值,代表维度层级的值
*/
@ApiField("dim_value")
private String dimValue;
public String getDimName() {
return this.dimName;
}
public void setDimName(String dimName) {
this.dimName = dimName;
}
public String getDimType() {
return this.dimType;
}
public void setDimType(String dimType) {
this.dimType = dimType;
}
public String getDimValue() {
return this.dimValue;
}
public void setDimValue(String dimValue) {
this.dimValue = dimValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy