com.founder.core.domain.MzDetailChargeDevide Maven / Gradle / Ivy
package com.founder.core.domain;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 医保费用分割计算
*/
public class MzDetailChargeDevide implements Serializable {
private String flag;
private String msg;
private String patient_id;
private BigDecimal charge_yb;
private BigDecimal charge_zhu;
private BigDecimal charge_fee;
private BigDecimal charge_total;
public String getFlag() {
return flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public BigDecimal getCharge_yb() {
return charge_yb;
}
public void setCharge_yb(BigDecimal charge_yb) {
this.charge_yb = charge_yb;
}
public BigDecimal getCharge_zhu() {
return charge_zhu;
}
public void setCharge_zhu(BigDecimal charge_zhu) {
this.charge_zhu = charge_zhu;
}
public BigDecimal getCharge_fee() {
return charge_fee;
}
public void setCharge_fee(BigDecimal charge_fee) {
this.charge_fee = charge_fee;
}
public BigDecimal getCharge_total() {
return charge_total;
}
public void setCharge_total(BigDecimal charge_total) {
this.charge_total = charge_total;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy