com.founder.core.domain.GhReceiptCharge Maven / Gradle / Ivy
package com.founder.core.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
@TableName(value = "gh_receipt_charge")
public class GhReceiptCharge implements Serializable {
@TableId(value = "patient_id",type = IdType.INPUT)
private String patient_id;
@TableId(value = "times",type = IdType.INPUT)
private Short times;
@TableId(value = "ledger_sn",type = IdType.INPUT)
private Integer ledger_sn;
@TableId(value = "receipt_sn",type = IdType.INPUT)
private Integer receipt_sn;
@TableId(value = "bill_code",type = IdType.INPUT)
private String bill_code;
private BigDecimal charge;
private String pay_unit;
private String clinic_type;
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public Short getTimes() {
return times;
}
public void setTimes(Short times) {
this.times = times;
}
public Integer getLedger_sn() {
return ledger_sn;
}
public void setLedger_sn(Integer ledger_sn) {
this.ledger_sn = ledger_sn;
}
public Integer getReceipt_sn() {
return receipt_sn;
}
public void setReceipt_sn(Integer receipt_sn) {
this.receipt_sn = receipt_sn;
}
public String getBill_code() {
return bill_code;
}
public void setBill_code(String bill_code) {
this.bill_code = bill_code;
}
public BigDecimal getCharge() {
return charge;
}
public void setCharge(BigDecimal charge) {
this.charge = charge;
}
public String getPay_unit() {
return pay_unit;
}
public void setPay_unit(String pay_unit) {
this.pay_unit = pay_unit;
}
public String getClinic_type() {
return clinic_type;
}
public void setClinic_type(String clinic_type) {
this.clinic_type = clinic_type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy