TemplateGroupDto.java 2.55 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5
package pwc.taxtech.atms.dto;

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

6 7 8
/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\TemplateGroupDto.cs
 */
eddie.woo's avatar
eddie.woo committed
9 10
public class TemplateGroupDto {

11
    private String id;
eddie.woo's avatar
eddie.woo committed
12
    private String name;
13
    private String serviceTypeId;
eddie.woo's avatar
eddie.woo committed
14 15
    private Date updateTime;
    private Date createTime;
16
    private String copyFrom;
17
    private String industryIds;
eddie.woo's avatar
eddie.woo committed
18 19 20 21 22 23
    private Integer payTaxType;
    private Integer groupType;
    private Boolean isSystemType;
    private List<TemplateFormulaDto> changedFormulas;
    private List<String> sheetNameList;

24
    public String getId() {
25
        return id;
eddie.woo's avatar
eddie.woo committed
26 27
    }

28
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
29
        this.id = id;
eddie.woo's avatar
eddie.woo committed
30 31 32 33 34 35 36 37 38 39
    }

    public String getName() {
        return name;
    }

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

40 41
    public String getServiceTypeId() {
        return serviceTypeId;
eddie.woo's avatar
eddie.woo committed
42 43
    }

44 45
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
eddie.woo's avatar
eddie.woo committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    }

    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;
    }

64
    public String getCopyFrom() {
eddie.woo's avatar
eddie.woo committed
65 66 67
        return copyFrom;
    }

68
    public void setCopyFrom(String copyFrom) {
eddie.woo's avatar
eddie.woo committed
69 70 71
        this.copyFrom = copyFrom;
    }

72 73
    public String getIndustryIds() {
        return industryIds;
eddie.woo's avatar
eddie.woo committed
74 75
    }

76 77
    public void setIndustryIds(String industryIds) {
        this.industryIds = industryIds;
eddie.woo's avatar
eddie.woo committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    }

    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;
    }

frank.xa.zhang's avatar
frank.xa.zhang committed
96
    public Boolean getIsSystemType() {
eddie.woo's avatar
eddie.woo committed
97 98 99
        return isSystemType;
    }

frank.xa.zhang's avatar
frank.xa.zhang committed
100
    public void setIsSystemType(Boolean isSystemType) {
eddie.woo's avatar
eddie.woo committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
        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;
    }

}