com.founder.core.domain.GhReceipt 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;
import java.util.Date;
@TableName(value = "gh_receipt")
public class GhReceipt 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;
private String pay_unit;
private BigDecimal charge_total;
private String settle_opera;
private Date settle_date;
private String price_opera;
private Date price_date;
private Date report_date;
private String receipt_no;
private String charge_status;
private String mz_dept_no;
private String clinic_type;
private String responce_type;
//private Date print_date;
//
//private String print_opera;
//
//private Date print_report_date;
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 getPay_unit() {
return pay_unit;
}
public void setPay_unit(String pay_unit) {
this.pay_unit = pay_unit;
}
public BigDecimal getCharge_total() {
return charge_total;
}
public void setCharge_total(BigDecimal charge_total) {
this.charge_total = charge_total;
}
public String getSettle_opera() {
return settle_opera;
}
public void setSettle_opera(String settle_opera) {
this.settle_opera = settle_opera;
}
public Date getSettle_date() {
return settle_date;
}
public void setSettle_date(Date settle_date) {
this.settle_date = settle_date;
}
public String getPrice_opera() {
return price_opera;
}
public void setPrice_opera(String price_opera) {
this.price_opera = price_opera;
}
public Date getPrice_date() {
return price_date;
}
public void setPrice_date(Date price_date) {
this.price_date = price_date;
}
public Date getReport_date() {
return report_date;
}
public void setReport_date(Date report_date) {
this.report_date = report_date;
}
public String getReceipt_no() {
return receipt_no;
}
public void setReceipt_no(String receipt_no) {
this.receipt_no = receipt_no;
}
public String getCharge_status() {
return charge_status;
}
public void setCharge_status(String charge_status) {
this.charge_status = charge_status;
}
public String getMz_dept_no() {
return mz_dept_no;
}
public void setMz_dept_no(String mz_dept_no) {
this.mz_dept_no = mz_dept_no;
}
public String getClinic_type() {
return clinic_type;
}
public void setClinic_type(String clinic_type) {
this.clinic_type = clinic_type;
}
public String getResponce_type() {
return responce_type;
}
public void setResponce_type(String responce_type) {
this.responce_type = responce_type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy