TemplateAndGroupDbDto.java 713 Bytes
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
package pwc.taxtech.atms.dto;

public class TemplateAndGroupDbDto {

    private String templateID;

    private String templateGroupID;

    private String templateCode;

    public String getTemplateID() {
        return templateID;
    }

    public void setTemplateID(String templateID) {
        this.templateID = templateID;
    }

    public String getTemplateGroupID() {
        return templateGroupID;
    }

    public void setTemplateGroupID(String templateGroupID) {
        this.templateGroupID = templateGroupID;
    }

    public String getTemplateCode() {
        return templateCode;
    }

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