All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.domain.GhReceiptChargeKey Maven / Gradle / Ivy

There is a newer version: 3.2.3.2
Show newest version
package com.founder.core.domain;

import java.io.Serializable;

public class GhReceiptChargeKey implements Serializable {

    private String patient_id;

    private Short times;

    private Integer ledger_sn;

    private Integer receipt_sn;

    private String bill_code;

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy