TemplateFormulaDto.java 3.87 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

eddie.woo's avatar
eddie.woo committed
5 6 7
import java.util.Date;

public class TemplateFormulaDto {
8 9 10 11
    /**
     * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\TemplateFormulaDto.cs
     */
    @JsonProperty("ID")
12
    private String id;
eddie.woo's avatar
eddie.woo committed
13 14 15
    private int rowIndex;
    private int columnIndex;
    private String formula;
16
    @JsonProperty("templateID")
17
    private String templateId;
eddie.woo's avatar
eddie.woo committed
18 19 20 21
    private Date createTime;
    private Date updateTime;
    private Integer columnEndIndex;
    private String templateName;
22
    @JsonProperty("templateGroupID")
23
    private String templateGroupId;
eddie.woo's avatar
eddie.woo committed
24
    private String templateGroupName;
25
    @JsonProperty("serviceTypeID")
26
    private String serviceTypeId;
eddie.woo's avatar
eddie.woo committed
27 28 29 30 31 32 33
    private String serviceTypeName;
    private String cell;
    private String rowName;
    private String columnName;
    private Boolean isManualChange;
    private String instructions;

34 35
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
36 37
    }

38
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
39
        this.id = id;
eddie.woo's avatar
eddie.woo committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    }

    public int getRowIndex() {
        return rowIndex;
    }

    public void setRowIndex(int rowIndex) {
        this.rowIndex = rowIndex;
    }

    public int getColumnIndex() {
        return columnIndex;
    }

    public void setColumnIndex(int columnIndex) {
        this.columnIndex = columnIndex;
    }

    public String getFormula() {
        return formula;
    }

    public void setFormula(String formula) {
        this.formula = formula;
    }

66 67
    public String getTemplateId() {
        return templateId;
eddie.woo's avatar
eddie.woo committed
68 69
    }

70 71
    public void setTemplateId(String templateId) {
        this.templateId = templateId;
eddie.woo's avatar
eddie.woo committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    }

    public Date getCreateTime() {
        return createTime;
    }

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

    public Date getUpdateTime() {
        return updateTime;
    }

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

    public Integer getColumnEndIndex() {
        return columnEndIndex;
    }

    public void setColumnEndIndex(Integer columnEndIndex) {
        this.columnEndIndex = columnEndIndex;
    }

    public String getTemplateName() {
        return templateName;
    }

    public void setTemplateName(String templateName) {
        this.templateName = templateName;
    }

106 107
    public String getTemplateGroupId() {
        return templateGroupId;
eddie.woo's avatar
eddie.woo committed
108 109
    }

110 111
    public void setTemplateGroupId(String templateGroupId) {
        this.templateGroupId = templateGroupId;
eddie.woo's avatar
eddie.woo committed
112 113 114 115 116 117 118 119 120 121
    }

    public String getTemplateGroupName() {
        return templateGroupName;
    }

    public void setTemplateGroupName(String templateGroupName) {
        this.templateGroupName = templateGroupName;
    }

122 123
    public String getServiceTypeId() {
        return serviceTypeId;
eddie.woo's avatar
eddie.woo committed
124 125
    }

126 127
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
eddie.woo's avatar
eddie.woo committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
    }

    public String getServiceTypeName() {
        return serviceTypeName;
    }

    public void setServiceTypeName(String serviceTypeName) {
        this.serviceTypeName = serviceTypeName;
    }

    public String getCell() {
        return cell;
    }

    public void setCell(String cell) {
        this.cell = cell;
    }

    public String getRowName() {
        return rowName;
    }

    public void setRowName(String rowName) {
        this.rowName = rowName;
    }

    public String getColumnName() {
        return columnName;
    }

    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }

    public Boolean isManualChange() {
        return isManualChange;
    }

    public void setManualChange(Boolean isManualChange) {
        this.isManualChange = isManualChange;
    }

    public String getInstructions() {
        return instructions;
    }

    public void setInstructions(String instructions) {
        this.instructions = instructions;
    }

}