KeyValueConfigDisplayDto.java 2.24 KB
Newer Older
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
package pwc.taxtech.atms.dto;

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

public class KeyValueConfigDisplayDto {
	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) {
		KeyCode = keyCode;
	}

	public String getName() {
		return Name;
	}

	public void setName(String name) {
		Name = name;
	}

	public String getFormula() {
		return Formula;
	}

	public void setFormula(String formula) {
		Formula = formula;
	}

	public String getDescription() {
		return Description;
	}

	public void setDescription(String description) {
		Description = description;
	}

	public String getScopeSummary() {
		return ScopeSummary;
	}

	public void setScopeSummary(String scopeSummary) {
		ScopeSummary = scopeSummary;
	}

	public String getServiceTypes() {
		return ServiceTypes;
	}

	public void setServiceTypes(String serviceTypes) {
		ServiceTypes = serviceTypes;
	}

	public String getIndustrys() {
		return Industrys;
	}

	public void setIndustrys(String industrys) {
		Industrys = industrys;
	}

	public List<String> getServiceTypeIds() {
		return ServiceTypeIds;
	}

	public void setServiceTypeIds(List<String> serviceTypeIds) {
		ServiceTypeIds = serviceTypeIds;
	}

	public List<String> getIndustryIds() {
		return IndustryIds;
	}

	public void setIndustryIds(List<String> industryIds) {
		IndustryIds = industryIds;
	}

	public Integer getKeyValueType() {
		return KeyValueType;
	}

	public void setKeyValueType(Integer keyValueType) {
		KeyValueType = keyValueType;
	}

	public String getDataSource() {
		return DataSource;
	}

	public void setDataSource(String dataSource) {
		DataSource = dataSource;
	}

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

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