UpdateKeyValueConfigDto.java 1.73 KB
Newer Older
1 2
package pwc.taxtech.atms.dto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

5 6 7
import java.util.List;

public class UpdateKeyValueConfigDto {
8 9 10 11 12 13 14 15 16 17 18
    @JsonProperty("ID")
    private String id;
    private String name;
    private String formula;
    private String dataSource;
    private String description;
    @JsonProperty("serviceTypeIDs")
    private List<Integer> serviceTypeIds;
    @JsonProperty("industryIDs")
    private List<Integer> industryIds;
    private String userName;
19

20 21
    public String getId() {
        return id;
22 23
    }

24 25
    public void setId(String id) {
        this.id = id;
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
    }

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

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

    public String getDescription() {
        return description;
    }

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

60 61
    public List<Integer> getServiceTypeIds() {
        return serviceTypeIds;
62 63
    }

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

68 69
    public List<Integer> getIndustryIds() {
        return industryIds;
70 71
    }

72 73
    public void setIndustryIds(List<Integer> industryIds) {
        this.industryIds = industryIds;
74 75 76 77 78 79 80 81 82 83
    }

    public String getUserName() {
        return userName;
    }

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