E050Response.java 3.19 KB
Newer Older
xucl 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseResponse;

public class E050Response extends BaseResponse {
    private Double grantInjury;    //一次性伤残
    private Double grantMedical;   //一次性医疗补助
    private Double grantWork;      //一次性就业
    private Double allowance;       //伤残津贴
    private Double nursingSome;     //生活护理费用-部分不能自理
    private Double nursingMost;     //生活护理费用-大部分不能自理
    private Double nursingAll;      //生活护理费用-完全不能自理
    private String info;            //提示律师的文字
    private String tip;             //山东 提示律师红色字
    //死亡时返回参数:
    private Double grantDeath;      //一次性工亡补助金
    private Double grantBury;       //丧葬补助金
    private Double pensionMate;     //亲属抚恤金-配偶
    private Double pensionOther;    //亲属抚恤金-其他
    private int calcId;          //E050计算结果ID

    public String getTip() {
        return tip;
    }

    public void setTip(String tip) {
        this.tip = tip;
    }

    public Double getGrantInjury() {
        return grantInjury;
    }

    public void setGrantInjury(Double grantInjury) {
        this.grantInjury = grantInjury;
    }

    public Double getGrantMedical() {
        return grantMedical;
    }

    public void setGrantMedical(Double grantMedical) {
        this.grantMedical = grantMedical;
    }

    public Double getGrantWork() {
        return grantWork;
    }

    public void setGrantWork(Double grantWork) {
        this.grantWork = grantWork;
    }

    public Double getAllowance() {
        return allowance;
    }

    public void setAllowance(Double allowance) {
        this.allowance = allowance;
    }

    public Double getNursingSome() {
        return nursingSome;
    }

    public void setNursingSome(Double nursingSome) {
        this.nursingSome = nursingSome;
    }

    public Double getNursingMost() {
        return nursingMost;
    }

    public void setNursingMost(Double nursingMost) {
        this.nursingMost = nursingMost;
    }

    public Double getNursingAll() {
        return nursingAll;
    }

    public void setNursingAll(Double nursingAll) {
        this.nursingAll = nursingAll;
    }

    public String getInfo() {
        return info;
    }

    public void setInfo(String info) {
        this.info = info;
    }

    public Double getGrantDeath() {
        return grantDeath;
    }

    public void setGrantDeath(Double grantDeath) {
        this.grantDeath = grantDeath;
    }

    public Double getGrantBury() {
        return grantBury;
    }

    public void setGrantBury(Double grantBury) {
        this.grantBury = grantBury;
    }

    public Double getPensionMate() {
        return pensionMate;
    }

    public void setPensionMate(Double pensionMate) {
        this.pensionMate = pensionMate;
    }

    public Double getPensionOther() {
        return pensionOther;
    }

    public void setPensionOther(Double pensionOther) {
        this.pensionOther = pensionOther;
    }

    public int getCalcId() {
        return calcId;
    }

    public void setCalcId(int calcId) {
        this.calcId = calcId;
    }
}