?? patientinfo.cs
字號(hào):
?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>病人基本信息(醫(yī)生填寫(xiě))</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>身份證號(hào)</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>病歷號(hào)</para>
/// </summary>
public int EMRNum
{
get { return eMRNum; }
set { eMRNum = value; }
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -