DimensionOrgDtoDashboard.java 1.97 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto.dimension;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

eddie.woo's avatar
eddie.woo committed
5 6 7 8 9 10
import java.util.List;

public class DimensionOrgDtoDashboard {
    /**
     * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\DimensionDto.cs
     */
11
    // 维度值的Id
12
    @JsonProperty("dimensionValueID")
13
    private String dimensionValueId;
eddie.woo's avatar
eddie.woo committed
14 15 16 17 18 19 20 21 22 23 24 25 26
    // 维度的值
    private String dimensionValue;
    // 机构层级第一个属性值
    private String firstAttrName;
    // 机构层级第二个属性值
    private String secondAttrName;

    private Boolean hasChildren;

    private List<DimensionOrgDto> orgDtoList;

    private List<DimensionOrgDtoDashboard> children;

27 28
    public String getDimensionValueId() {
        return dimensionValueId;
eddie.woo's avatar
eddie.woo committed
29 30
    }

31 32
    public void setDimensionValueId(String dimensionValueId) {
        this.dimensionValueId = dimensionValueId;
eddie.woo's avatar
eddie.woo committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    }

    public String getDimensionValue() {
        return dimensionValue;
    }

    public void setDimensionValue(String dimensionValue) {
        this.dimensionValue = dimensionValue;
    }

    public String getFirstAttrName() {
        return firstAttrName;
    }

    public void setFirstAttrName(String firstAttrName) {
        this.firstAttrName = firstAttrName;
    }

    public String getSecondAttrName() {
        return secondAttrName;
    }

    public void setSecondAttrName(String secondAttrName) {
        this.secondAttrName = secondAttrName;
    }

    public Boolean getHasChildren() {
        return hasChildren;
    }

    public void setHasChildren(Boolean hasChildren) {
        this.hasChildren = hasChildren;
    }

    public List<DimensionOrgDto> getOrgDtoList() {
        return orgDtoList;
    }

    public void setOrgDtoList(List<DimensionOrgDto> orgDtoList) {
        this.orgDtoList = orgDtoList;
    }

    public List<DimensionOrgDtoDashboard> getChildren() {
        return children;
    }

    public void setChildren(List<DimensionOrgDtoDashboard> children) {
        this.children = children;
    }
}