package pwc.taxtech.atms.dto;

import java.util.Date;
import java.util.List;

/** @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\TemplateGroupDto.cs */
public class TemplateGroupDto {

    private String ID;
    private String name;
    private String serviceTypeID;
    private Date updateTime;
    private Date createTime;
    private String copyFrom;
    private String industryIDs;
    private Integer payTaxType;
    private Integer groupType;
    private Boolean isSystemType;
    private List<TemplateFormulaDto> changedFormulas;
    private List<String> sheetNameList;

    public String getID() {
        return ID;
    }

    public void setID(String iD) {
        ID = iD;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getServiceTypeID() {
        return serviceTypeID;
    }

    public void setServiceTypeID(String serviceTypeID) {
        this.serviceTypeID = serviceTypeID;
    }

    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    public String getCopyFrom() {
        return copyFrom;
    }

    public void setCopyFrom(String copyFrom) {
        this.copyFrom = copyFrom;
    }

    public String getIndustryIDs() {
        return industryIDs;
    }

    public void setIndustryIDs(String industryIDs) {
        this.industryIDs = industryIDs;
    }

    public Integer getPayTaxType() {
        return payTaxType;
    }

    public void setPayTaxType(Integer payTaxType) {
        this.payTaxType = payTaxType;
    }

    public Integer getGroupType() {
        return groupType;
    }

    public void setGroupType(Integer groupType) {
        this.groupType = groupType;
    }

    public Boolean getIsSystemType() {
        return isSystemType;
    }

    public void setIsSystemType(Boolean isSystemType) {
        this.isSystemType = isSystemType;
    }

    public List<TemplateFormulaDto> getChangedFormulas() {
        return changedFormulas;
    }

    public void setChangedFormulas(List<TemplateFormulaDto> changedFormulas) {
        this.changedFormulas = changedFormulas;
    }

    public List<String> getSheetNameList() {
        return sheetNameList;
    }

    public void setSheetNameList(List<String> sheetNameList) {
        this.sheetNameList = sheetNameList;
    }

}