Trcharging.java 5.61 KB
package cn.csbr.springboot.dao.model;

import java.util.Date;
import javax.persistence.*;
import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;

@Table(name = "trcharging")
public class Trcharging {
    @Id
    private String guid;

    /**
     * 系统标识
     */
    private String patientguid;

    /**
     * 患者姓名
     */
    private String name;

    /**
     * 住院号
     */
    @Column(name = "inpatienNo")
    private String inpatienno;

    /**
     * 病床号
     */
    @Column(name = "sickbedNo")
    private String sickbedno;

    /**
     * 科室标识
     */
    private String orgguid;
    //科室名称
    @Column( name = "orgName" )
    private String orgName;

    public String getOrgName() {
        return orgName;
    }

    public void setOrgName(String orgName) {
        this.orgName = orgName;
    }
    @Column( name = "StoreGuid" )
    private String storeguid;

    public String getStoreguid() {
        return storeguid;
    }

    public void setStoreguid(String storeguid) {
        this.storeguid = storeguid;
    }

    public String getStorename() {
        return storename;
    }

    public void setStorename(String storename) {
        this.storename = storename;
    }

    @Column( name = "StoreName" )
    private String storename;
    /**
     * 手术日期
     */
    @Column(name = "operationDate")
    @ColumnType(jdbcType=JdbcType.TIMESTAMP)
    private Date operationdate;

    /**
     * 手术编号号
     */
    @Column(name = "operationNo")
    private String operationno;

    /**
     * 手术医生
     */
    @Column(name = "operationName")
    private String operationname;

    @Column(name = "CREATENAME")
    private String createname;

    @Column(name = "CREATETIME")
    @ColumnType(jdbcType=JdbcType.TIMESTAMP)
    private Date createtime;


    /**
     * @return guid
     */
    public String getGuid() {
        return guid;
    }

    /**
     * @param guid
     */
    public void setGuid(String guid) {
        this.guid = guid;
    }

    /**
     * This method returns the value of the 系统标识
     *
     * @return patientguid - 系统标识
     */
    public String getPatientguid() {
        return patientguid;
    }

    /**
     * This method set the value of the 系统标识
     *
     * @param patientguid 系统标识
     */
    public void setPatientguid(String patientguid) {
        this.patientguid = patientguid;
    }

    /**
     * This method returns the value of the 患者姓名
     *
     * @return name - 患者姓名
     */
    public String getName() {
        return name;
    }

    /**
     * This method set the value of the 患者姓名
     *
     * @param name 患者姓名
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * This method returns the value of the 住院号
     *
     * @return inpatienNo - 住院号
     */
    public String getInpatienno() {
        return inpatienno;
    }

    /**
     * This method set the value of the 住院号
     *
     * @param inpatienno 住院号
     */
    public void setInpatienno(String inpatienno) {
        this.inpatienno = inpatienno;
    }

    /**
     * This method returns the value of the 病床号
     *
     * @return sickbedNo - 病床号
     */
    public String getSickbedno() {
        return sickbedno;
    }

    /**
     * This method set the value of the 病床号
     *
     * @param sickbedno 病床号
     */
    public void setSickbedno(String sickbedno) {
        this.sickbedno = sickbedno;
    }

    /**
     * This method returns the value of the 科室标识
     *
     * @return orgguid - 科室标识
     */
    public String getOrgguid() {
        return orgguid;
    }

    /**
     * This method set the value of the 科室标识
     *
     * @param orgguid 科室标识
     */
    public void setOrgguid(String orgguid) {
        this.orgguid = orgguid;
    }

    /**
     * This method returns the value of the 手术日期
     *
     * @return operationDate - 手术日期
     */
    public Date getOperationdate() {
        return operationdate;
    }

    /**
     * This method set the value of the 手术日期
     *
     * @param operationdate 手术日期
     */
    public void setOperationdate(Date operationdate) {
        this.operationdate = operationdate;
    }

    /**
     * This method returns the value of the 手术编号号
     *
     * @return operationNo - 手术编号号
     */
    public String getOperationno() {
        return operationno;
    }

    /**
     * This method set the value of the 手术编号号
     *
     * @param operationno 手术编号号
     */
    public void setOperationno(String operationno) {
        this.operationno = operationno;
    }

    /**
     * This method returns the value of the 手术医生
     *
     * @return operationName - 手术医生
     */
    public String getOperationname() {
        return operationname;
    }

    /**
     * This method set the value of the 手术医生
     *
     * @param operationname 手术医生
     */
    public void setOperationname(String operationname) {
        this.operationname = operationname;
    }

    /**
     * @return CREATENAME
     */
    public String getCreatename() {
        return createname;
    }

    /**
     * @param createname
     */
    public void setCreatename(String createname) {
        this.createname = createname;
    }

    /**
     * @return CREATETIME
     */
    public Date getCreatetime() {
        return createtime;
    }

    /**
     * @param createtime
     */
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
}