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

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

The newest version!
package com.founder.core.domain;

import com.baomidou.mybatisplus.annotation.TableName;

import java.io.Serializable;

/**
 * 医保视图 view_gs_mdtrt_info
 */
@TableName(value = "view_gs_mdtrt_info")
public class ViewGsMdtrtinfo implements Serializable {

    private String pat_code; //患者编码 院内唯一主键
    private Integer times;
    private String sc_code;
    private String begntime;//begntime	开始时间	日期时间型	 
    private String ipt_otp_no;//ipt_otp_no	住院/门诊号	字符型	30	 	Y 	院内唯一流水
    private String atddr_no;//atddr_no	医师编码	字符型	30	 	Y 
    private String dr_name;//dr_name	医师姓名	字符型	50	 	Y 
    private String dept_code;//dept_code	科室编码	字符型	30	 	Y 
    private String dept_name;//dept_name	科室名称	字符型	100	 	Y 
    private String caty;//caty	科别	字符型	10	Y	Y
    private String expContent;//expContent	字段扩展	字符型	4000

    public String getPat_code() {
        return pat_code;
    }

    public void setPat_code(String pat_code) {
        this.pat_code = pat_code;
    }

    public Integer getTimes() {
        return times;
    }

    public void setTimes(Integer times) {
        this.times = times;
    }

    public String getSc_code() {
        return sc_code;
    }

    public void setSc_code(String sc_code) {
        this.sc_code = sc_code;
    }

    public String getBegntime() {
        return begntime;
    }

    public void setBegntime(String begntime) {
        this.begntime = begntime;
    }

    public String getIpt_otp_no() {
        return ipt_otp_no;
    }

    public void setIpt_otp_no(String ipt_otp_no) {
        this.ipt_otp_no = ipt_otp_no;
    }

    public String getAtddr_no() {
        return atddr_no;
    }

    public void setAtddr_no(String atddr_no) {
        this.atddr_no = atddr_no;
    }

    public String getDr_name() {
        return dr_name;
    }

    public void setDr_name(String dr_name) {
        this.dr_name = dr_name;
    }

    public String getDept_code() {
        return dept_code;
    }

    public void setDept_code(String dept_code) {
        this.dept_code = dept_code;
    }

    public String getDept_name() {
        return dept_name;
    }

    public void setDept_name(String dept_name) {
        this.dept_name = dept_name;
    }

    public String getCaty() {
        return caty;
    }

    public void setCaty(String caty) {
        this.caty = caty;
    }

    public String getExpContent() {
        return expContent;
    }

    public void setExpContent(String expContent) {
        this.expContent = expContent;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy