patientinfo.cs

来自「实现电子病历功能 有医生护士等角色 分别可以增加病历修改病历删除病历等等功能」· CS 代码 · 共 181 行

CS
181
字号
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// <para>病人基本信息(医生填写)</para>
/// </summary>
public class PatientInfo
{
    public PatientInfo()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    private string patientName;
    public string PatientName
    {
        get { return patientName; }
        set { patientName = value; }
    }

    private int patientSex;
    public int PatientSex
    {
        get { return patientSex; }
        set { patientSex = value; }
    }


    private int patientAge;
    public int PatientAge
    {
        get { return patientAge; }
        set { patientAge = value; }
    }

    private string patientNativePlace;
    /// <summary>
    /// <para>籍贯</para>
    /// </summary>
    public string PatientNativePlace
    {
        get { return patientNativePlace; }
        set { patientNativePlace = value; }
    }

    private string patientNation;
    /// <summary>
    /// <para>民族</para>
    /// </summary>
    public string PatientNation
    {
        get { return patientNation; }
        set { patientNation = value; }
    }


    private string patientJob;
    public string PatientJob
    {
        get { return patientJob; }
        set { patientJob = value; }
    }

    private string patientEducation;
    /// <summary>
    /// <para>文化程度</para>
    /// </summary>
    public string PatientEducation
    {
        get { return patientEducation; }
        set { patientEducation = value; }
    }

    private string patientAddress;
    public string PatientAddress
    {
        get { return patientAddress; }
        set { patientAddress = value; }
    }

    private string patientPostalCode;
    public string PatientPostalCode
    {
        get { return patientPostalCode; }
        set { patientPostalCode = value; }
    }

    private string patientIDCardNum;
    /// <summary>
    /// <para>身份证号</para>
    /// </summary>
    public string PatientIDCardNum
    {
        get { return patientIDCardNum; }
        set { patientIDCardNum = value; }
    }

    private string patientRPRPlace;
    /// <summary>
    /// <para>户口</para>
    /// </summary>
    public string PatientRPRPlace
    {
        get { return patientRPRPlace; }
        set { patientRPRPlace = value; }
    }

    private string patientTelephoneNum;
    public string PatientTelephoneNum
    {
        get { return patientTelephoneNum; }
        set { patientTelephoneNum = value; }
    }

    private string patientBirthday;
    public string PatientBirthday
    {
        get { return patientBirthday; }
        set { patientBirthday = value; }
    }

    private int patientIsMarry;
    /// <summary>
    /// <para>0 未婚</para>
    /// <para>1 已婚</para>
    /// </summary>
    public int PatientIsMarry
    {
        get { return patientIsMarry; }
        set { patientIsMarry = value; }
    }

    private string patientContactMan;
    public string  PatientContactMan
    {
        get { return patientContactMan; }
        set { patientContactMan = value; }
    }

    private string patientContactManAddress;
    public string PatientContactManAddress
    {
        get { return patientContactManAddress; }
        set { patientContactManAddress = value; }
    }

    private string patientContactManRelation;
    public string PatientContactManRelation
    {
        get { return patientContactManRelation; }
        set { patientContactManRelation = value; }
    }

    private string patientContactManTelephone;
    public string PatientContactManTelephone
    {
        get { return patientContactManTelephone; }
        set { patientContactManTelephone = value; }
    }

    private int eMRNum;
    /// <summary>
    /// <para>病历号</para>
    /// </summary>
    public int EMRNum
    {
        get { return eMRNum; }
        set { eMRNum = value; }
    }
 
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?