KeyValueConfigDisplayDto.java 2.3 KB
Newer Older
1 2 3 4 5 6 7
package pwc.taxtech.atms.dto;

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

public class KeyValueConfigDisplayDto {
	private String ID;
8 9 10 11 12 13 14 15 16 17 18 19
	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;
20 21 22 23 24 25 26 27 28

	public String getID() {
		return ID;
	}

	public void setID(String ID) {
		this.ID = ID;
	}

29

30
	public String getKeyCode() {
31
		return keyCode;
32 33 34
	}

	public void setKeyCode(String keyCode) {
35
		this.keyCode = keyCode;
36 37 38
	}

	public String getName() {
39
		return name;
40 41 42
	}

	public void setName(String name) {
43
		this.name = name;
44 45 46
	}

	public String getFormula() {
47
		return formula;
48 49 50
	}

	public void setFormula(String formula) {
51
		this.formula = formula;
52 53 54
	}

	public String getDescription() {
55
		return description;
56 57 58
	}

	public void setDescription(String description) {
59
		this.description = description;
60 61 62
	}

	public String getScopeSummary() {
63
		return scopeSummary;
64 65 66
	}

	public void setScopeSummary(String scopeSummary) {
67
		this.scopeSummary = scopeSummary;
68 69 70
	}

	public String getServiceTypes() {
71
		return serviceTypes;
72 73 74
	}

	public void setServiceTypes(String serviceTypes) {
75
		this.serviceTypes = serviceTypes;
76 77 78
	}

	public String getIndustrys() {
79
		return industrys;
80 81 82
	}

	public void setIndustrys(String industrys) {
83
		this.industrys = industrys;
84 85 86
	}

	public List<String> getServiceTypeIds() {
87
		return serviceTypeIds;
88 89 90
	}

	public void setServiceTypeIds(List<String> serviceTypeIds) {
91
		this.serviceTypeIds = serviceTypeIds;
92 93 94
	}

	public List<String> getIndustryIds() {
95
		return industryIds;
96 97 98
	}

	public void setIndustryIds(List<String> industryIds) {
99
		this.industryIds = industryIds;
100 101 102
	}

	public Integer getKeyValueType() {
103
		return keyValueType;
104 105 106
	}

	public void setKeyValueType(Integer keyValueType) {
107
		this.keyValueType = keyValueType;
108 109 110
	}

	public String getDataSource() {
111
		return dataSource;
112 113 114
	}

	public void setDataSource(String dataSource) {
115
		this.dataSource = dataSource;
116 117 118
	}

	public Map<Integer, Integer> getScopeCount() {
119
		return scopeCount;
120 121 122
	}

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