StatisticAttributeDisplayDto.java 1.91 KB
package pwc.taxtech.atms.dpo;

import com.fasterxml.jackson.annotation.JsonProperty;

public class StatisticAttributeDisplayDto {
    @JsonProperty("attributeID")
    private String attributeId;
    private String attributeName;

    private String dimensionName;
    @JsonProperty("dimensionID")
    private String dimensionId;

    @JsonProperty("belongDimensionID")
    private String belongDimensionId;

    private Integer attributeType;

    private Integer orderIndex;

    /**
     * 统计值
     */
    private Integer count;

    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 String getDimensionName() {
        return dimensionName;
    }

    public void setDimensionName(String dimensionName) {
        this.dimensionName = dimensionName;
    }

    public String getDimensionId() {
        return dimensionId;
    }

    public void setDimensionId(String dimensionId) {
        this.dimensionId = dimensionId;
    }

    public String getBelongDimensionId() {
        return belongDimensionId;
    }

    public void setBelongDimensionId(String belongDimensionId) {
        this.belongDimensionId = belongDimensionId;
    }

    public Integer getAttributeType() {
        return attributeType;
    }

    public void setAttributeType(Integer attributeType) {
        this.attributeType = attributeType;
    }

    public Integer getOrderIndex() {
        return orderIndex;
    }

    public void setOrderIndex(Integer orderIndex) {
        this.orderIndex = orderIndex;
    }

    public Integer getCount() {
        return count;
    }

    public void setCount(Integer count) {
        this.count = count;
    }

}