TemplateAndGroupDbDto.java 701 Bytes
Newer Older
1 2 3 4
package pwc.taxtech.atms.dto;

public class TemplateAndGroupDbDto {

5
    private Long templateId;
6

7
    private Long templateGroupId;
8 9 10

    private String templateCode;

11 12
    public Long getTemplateId() {
        return templateId;
13 14
    }

15 16
    public void setTemplateId(Long templateId) {
        this.templateId = templateId;
17 18
    }

19 20
    public Long getTemplateGroupId() {
        return templateGroupId;
21 22
    }

23 24
    public void setTemplateGroupId(Long templateGroupId) {
        this.templateGroupId = templateGroupId;
25 26 27 28 29 30 31 32 33 34
    }

    public String getTemplateCode() {
        return templateCode;
    }

    public void setTemplateCode(String templateCode) {
        this.templateCode = templateCode;
    }
}