package pwc.taxtech.atms.dto.dimension; import com.fasterxml.jackson.annotation.JsonProperty; /** * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\DimensionDto.cs */ public class DimensionOrgDto { // 属性Id @JsonProperty("attributeID") private String attributeId; // 属性名字 private String attributeName; /// 维度的个数 private Integer attributeValueCount; /// Gets or sets the type of the dimension. private Integer attributeType; public String getAttributeId() { return attributeId; } public void setAttributeId(String attributeId) { this.attributeId = attributeId; } public String getAttributeName() { return attributeName; } public void setAttributeName(String attributeName) { this.attributeName = attributeName; } public Integer getAttributeValueCount() { return attributeValueCount; } public void setAttributeValueCount(Integer attributeValueCount) { this.attributeValueCount = attributeValueCount; } public Integer getAttributeType() { return attributeType; } public void setAttributeType(Integer attributeType) { this.attributeType = attributeType; } }