?? patientinfo.cs
字號:
?using System;
using System.Collections.Generic;
using System.Text;
namespace Youzi.Model
{
public class PatientInfo
{
private string _PatientID;
public string PatientID
{
get { return _PatientID; }
set { _PatientID = value; }
}
private string _PatientName;
public string PatientName
{
get { return _PatientName; }
set { _PatientName = value; }
}
private string _PatientSex;
public string PatientSex
{
get { return _PatientSex; }
set { _PatientSex = value; }
}
private string _PatientAge;
public string PatientAge
{
get { return _PatientAge; }
set { _PatientAge = value; }
}
private string _Department;
public string Department
{
get { return _Department; }
set { _Department = value; }
}
private string _Address;
public string Address
{
get { return _Address; }
set { _Address = value; }
}
private string _OperateDate;
public string OperateDate
{
get { return _OperateDate; }
set { _OperateDate = value; }
}
private string _Operator;
public string Operator
{
get { return _Operator; }
set { _Operator = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -