DimensionDto.java 3.33 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
import java.util.Date;
import java.util.List;

public class DimensionDto {
9
    @JsonProperty("ID")
10
    private String id;
eddie.woo's avatar
eddie.woo committed
11
    private String name;
12
    @JsonProperty("attributeID")
13
    private String attributeId;
eddie.woo's avatar
eddie.woo committed
14 15 16 17 18 19 20 21 22 23 24 25 26

    private Short orderIndex;
    private Boolean isMandatory;
    private Boolean isActive;

    private Boolean isSystemDimension;
    private String createBy;
    private String updateBy;

    private Date createTime;

    private Date updateTime;

27 28 29
    /**
     * 维度的个数
     */
eddie.woo's avatar
eddie.woo committed
30 31 32 33 34 35 36 37
    private Integer dimensionValueCount;

    private Integer dimensionType;

    private List<DimensionValueDto> dimensionValueList;

    private Integer attributeValueCount;

38 39
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
40 41
    }

42
    public void setId(String id) {
43
        this.id = id;
eddie.woo's avatar
eddie.woo committed
44 45 46 47 48 49 50 51 52 53
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

54 55
    public String getAttributeId() {
        return attributeId;
eddie.woo's avatar
eddie.woo committed
56 57
    }

58 59
    public void setAttributeId(String attributeId) {
        this.attributeId = attributeId;
eddie.woo's avatar
eddie.woo committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    }

    public Short getOrderIndex() {
        return orderIndex;
    }

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

    public Boolean getIsMandatory() {
        return isMandatory;
    }

    public void setIsMandatory(Boolean isMandatory) {
        this.isMandatory = isMandatory;
    }

    public Boolean getIsActive() {
        return isActive;
    }

    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    public Boolean getIsSystemDimension() {
        return isSystemDimension;
    }

    public void setIsSystemDimension(Boolean isSystemDimension) {
        this.isSystemDimension = isSystemDimension;
    }

    public String getCreateBy() {
        return createBy;
    }

    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }

    public String getUpdateBy() {
        return updateBy;
    }

    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    public Integer getDimensionValueCount() {
        return dimensionValueCount;
    }

    public void setDimensionValueCount(Integer dimensionValueCount) {
        this.dimensionValueCount = dimensionValueCount;
    }

    public Integer getDimensionType() {
        return dimensionType;
    }

    public void setDimensionType(Integer dimensionType) {
        this.dimensionType = dimensionType;
    }

    public List<DimensionValueDto> getDimensionValueList() {
        return dimensionValueList;
    }

    public void setDimensionValueList(List<DimensionValueDto> dimensionValueList) {
        this.dimensionValueList = dimensionValueList;
    }

    public Integer getAttributeValueCount() {
        return attributeValueCount;
    }

    public void setAttributeValueCount(Integer attributeValueCount) {
        this.attributeValueCount = attributeValueCount;
    }

}