OrganizationServiceTemplateGroupDto.java 2.21 KB
Newer Older
1 2
package pwc.taxtech.atms.dpo;

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

5 6
public class OrganizationServiceTemplateGroupDto {

7
    @JsonProperty("ID")
8
    private String id;
9
    @JsonProperty("organizationID")
10
    private String organizationId;
11
    @JsonProperty("serviceTypeID")
12
    private String serviceTypeId;
13
    private String serviceTypeName;
14
    @JsonProperty("templateGroupID")
15
    private Long templateGroupId;
16
    private String templateGroupName;
17

18
    /**
19
     * @return the id
20
     */
21 22
    public String getId() {
        return id;
23
    }
24

25
    /**
26
     * @param id the id to set
27
     */
28 29
    public void setId(String id) {
        id = id;
30
    }
31

32
    /**
33
     * @return the organizationId
34
     */
35 36
    public String getOrganizationId() {
        return organizationId;
37
    }
38

39
    /**
40
     * @param organizationId the organizationId to set
41
     */
42 43
    public void setOrganizationId(String organizationId) {
        this.organizationId = organizationId;
44
    }
45

46
    /**
47
     * @return the serviceTypeId
48
     */
49 50
    public String getServiceTypeId() {
        return serviceTypeId;
51
    }
52

53
    /**
54
     * @param serviceTypeId the serviceTypeId to set
55
     */
56 57
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
58
    }
59

60 61 62 63 64 65
    /**
     * @return the serviceTypeName
     */
    public String getServiceTypeName() {
        return serviceTypeName;
    }
66

67 68 69 70 71 72
    /**
     * @param serviceTypeName the serviceTypeName to set
     */
    public void setServiceTypeName(String serviceTypeName) {
        this.serviceTypeName = serviceTypeName;
    }
73

74
    /**
75
     * @return the templateGroupId
76
     */
77 78
    public Long getTemplateGroupId() {
        return templateGroupId;
79
    }
80

81
    /**
82
     * @param templateGroupId the templateGroupId to set
83
     */
84 85
    public void setTemplateGroupId(Long templateGroupId) {
        this.templateGroupId = templateGroupId;
86
    }
87

88 89 90 91 92 93
    /**
     * @return the templateGroupName
     */
    public String getTemplateGroupName() {
        return templateGroupName;
    }
94

95 96 97 98 99 100
    /**
     * @param templateGroupName the templateGroupName to set
     */
    public void setTemplateGroupName(String templateGroupName) {
        this.templateGroupName = templateGroupName;
    }
101 102


103
}