KeyValueConfigDisplayDto.java 2.72 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 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 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
package pwc.taxtech.atms.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;
import java.util.Map;

public class KeyValueConfigDisplayDto {
//    @JsonProperty("ID")
    private String id;
    private String keyCode;
    private String name;
    private String formula;
    private String description;
    private String scopeSummary;
    private String serviceTypes;
    private String industrys;
    private List<String> serviceTypeIDs;
    private List<String> industryIDs;
    private Integer keyValueType;
    private String dataSource;
    private Map<Integer, Integer> scopeCount;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }


    public String getKeyCode() {
        return keyCode;
    }

    public void setKeyCode(String keyCode) {
        this.keyCode = keyCode;
    }

    public String getName() {
        return name;
    }

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

    public String getFormula() {
        return formula;
    }

    public void setFormula(String formula) {
        this.formula = formula;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getScopeSummary() {
        return scopeSummary;
    }

    public void setScopeSummary(String scopeSummary) {
        this.scopeSummary = scopeSummary;
    }

    public String getServiceTypes() {
        return serviceTypes;
    }

    public void setServiceTypes(String serviceTypes) {
        this.serviceTypes = serviceTypes;
    }

    public String getIndustrys() {
        return industrys;
    }

    public void setIndustrys(String industrys) {
        this.industrys = industrys;
    }

    public List<String> getServiceTypeIDs() {
        return serviceTypeIDs;
    }

    public void setServiceTypeIDs(List<String> serviceTypeIDs) {
        this.serviceTypeIDs = serviceTypeIDs;
    }

    public List<String> getIndustryIDs() {
        return industryIDs;
    }

    public void setIndustryIDs(List<String> industryIDs) {
        this.industryIDs = industryIDs;
    }

    public Integer getKeyValueType() {
        return keyValueType;
    }

    public void setKeyValueType(Integer keyValueType) {
        this.keyValueType = keyValueType;
    }

    public String getDataSource() {
        return dataSource;
    }

    public void setDataSource(String dataSource) {
        this.dataSource = dataSource;
    }

    public Map<Integer, Integer> getScopeCount() {
        return scopeCount;
    }

    public void setScopeCount(Map<Integer, Integer> scopeCount) {
        this.scopeCount = scopeCount;
    }
}