AddKeyValueConfigDto.java 1.62 KB
Newer Older
1 2 3 4 5
package pwc.taxtech.atms.dto;

import java.util.List;

public class AddKeyValueConfigDto {
6 7 8 9 10 11 12 13
    private String keyCode;
    private String name;
    private String formula;
    private String description;
    private String dataSource;
    private List<Integer> serviceTypeIds;
    private List<Integer> industryIds;
    private String userName;
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

    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 getDataSource() {
        return dataSource;
    }

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

    public List<Integer> getServiceTypeIds() {
        return serviceTypeIds;
    }

    public void setServiceTypeIds(List<Integer> serviceTypeIds) {
        this.serviceTypeIds = serviceTypeIds;
    }

    public List<Integer> getIndustryIds() {
        return industryIds;
    }

    public void setIndustryIds(List<Integer> industryIds) {
        this.industryIds = industryIds;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }
}