TemplateGroupDto.java 2.54 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8
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 {

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

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

26
    public void setId(String iD) {
27
        id = iD;
eddie.woo's avatar
eddie.woo committed
28 29 30 31 32 33 34 35 36 37
    }

    public String getName() {
        return name;
    }

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

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

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

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

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

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

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

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

    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
94
    public Boolean getIsSystemType() {
eddie.woo's avatar
eddie.woo committed
95 96 97
        return isSystemType;
    }

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

}