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

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

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

import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;

/**
 * 医保视图 view_gs_mdtrt_pat_info
 */
@TableName(value = "view_gs_mdtrt_pat_info")
public class ViewGsMdtrtPatinfo implements Serializable {
    @TableField(value = "pat_code")
    private String pat_code; //患者编码 院内唯一主键
    @TableField(value = "psn_cert_type")
    private String psn_cert_type;//证件类型
    @TableField(value = "certno")
    private String certno;//证件号码
    @TableField(value = "psn_name")
    private String psn_name;//姓名
    @TableField(value = "gend")
    private String gend;//性别
    @TableField(value = "naty")
    private String naty;//民族
    @TableField(value = "brdy")
    private Date brdy;//出生日期
    @TableField(value = "age")
    private BigDecimal age;//年龄

    public String getPat_code() {
        return pat_code;
    }

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

    public String getPsn_cert_type() {
        return psn_cert_type;
    }

    public void setPsn_cert_type(String psn_cert_type) {
        this.psn_cert_type = psn_cert_type;
    }

    public String getCertno() {
        return certno;
    }

    public void setCertno(String certno) {
        this.certno = certno;
    }

    public String getPsn_name() {
        return psn_name;
    }

    public void setPsn_name(String psn_name) {
        this.psn_name = psn_name;
    }

    public String getGend() {
        return gend;
    }

    public void setGend(String gend) {
        this.gend = gend;
    }

    public String getNaty() {
        return naty;
    }

    public void setNaty(String naty) {
        this.naty = naty;
    }

    public Date getBrdy() {
        return brdy;
    }

    public void setBrdy(Date brdy) {
        this.brdy = brdy;
    }

    public BigDecimal getAge() {
        return age;
    }

    public void setAge(BigDecimal age) {
        this.age = age;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy