DimensionOrgDto.java 1.14 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6
package pwc.taxtech.atms.dto.dimension;

/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\DimensionDto.cs
 */
public class DimensionOrgDto {
7 8
    // 属性Id
    private String attributeId;
eddie.woo's avatar
eddie.woo committed
9 10 11 12 13 14 15 16 17 18

    // 属性名字
    private String attributeName;

    /// 维度的个数
    private Integer attributeValueCount;

    /// Gets or sets the type of the dimension.
    private Integer attributeType;

19 20
    public String getAttributeId() {
        return attributeId;
eddie.woo's avatar
eddie.woo committed
21 22
    }

23 24
    public void setAttributeId(String attributeId) {
        this.attributeId = attributeId;
eddie.woo's avatar
eddie.woo committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    }

    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;
    }

}