RequestParameterDto.java 2.36 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
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 35 36 37 38 39 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 66 67 68 69 70 71 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
package pwc.taxtech.atms.dto;

import java.io.Serializable;

/**
 * @ClassName RequestParameterDto
 * Description TODO
 * @Author pwc kevin
 * @Date 3/27/2019 6:38 PM
 * Version 1.0
 * 请求参数封装
 **/
public class RequestParameterDto   implements Serializable {

    private String jsonString;//excel传过来的数据 已经被序列化成字符串了
    private String  specialConsiderations;
    private String ebitRate;

    public  String orgId;
    public Integer period;
    public String templateId;
    public String projectId;
    public String reportId;

    public String getJsonString() {
        return jsonString;
    }

    public void setJsonString(String jsonString) {
        this.jsonString = jsonString;
    }

    public String getSpecialConsiderations() {
        return specialConsiderations;
    }

    public void setSpecialConsiderations(String specialConsiderations) {
        this.specialConsiderations = specialConsiderations;
    }

    public String getEbitRate() {
        return ebitRate;
    }

    public void setEbitRate(String ebitRate) {
        this.ebitRate = ebitRate;
    }

    public String getOrgId() {
        return orgId;
    }

    public void setOrgId(String orgId) {
        this.orgId = orgId;
    }

    public Integer getPeriod() {
        return period;
    }

    public void setPeriod(Integer period) {
        this.period = period;
    }

    public String getTemplateId() {
        return templateId;
    }

    public void setTemplateId(String templateId) {
        this.templateId = templateId;
    }

    public String getProjectId() {
        return projectId;
    }

    public void setProjectId(String projectId) {
        this.projectId = projectId;
    }

    public String getReportId() {
        return reportId;
    }

    public void setReportId(String reportId) {
        this.reportId = reportId;
    }

    @Override
    public String toString() {
        return "RequestParameterDto{" +
                "jsonString='" + jsonString + '\'' +
                ", specialConsiderations=" + specialConsiderations +
                ", ebitRate='" + ebitRate + '\'' +
                ", orgId='" + orgId + '\'' +
                ", period=" + period +
                ", templateId='" + templateId + '\'' +
                ", projectId='" + projectId + '\'' +
                ", reportId='" + reportId + '\'' +
                '}';
    }
}