📄 doctorinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using Youzi.Model;
namespace Youzi.Model
{
public class DoctorInfo
{
private int _DoctorID;
public int DoctorID
{
get { return _DoctorID; }
set { _DoctorID = value; }
}
private string _DoctorName;
public string DoctorName
{
get { return _DoctorName; }
set { _DoctorName = value; }
}
private string _DoctorSex;
public string DoctorSex
{
get { return _DoctorSex; }
set { _DoctorSex = value; }
}
private string _DoctorAge;
public string DoctorAge
{
get { return _DoctorAge; }
set { _DoctorAge = value; }
}
private string _DoctorDegree;
public string DoctorDegree
{
get { return _DoctorDegree; }
set { _DoctorDegree = value; }
}
private string _DoctorPosition;
public string DoctorPosition
{
get { return _DoctorPosition; }
set { _DoctorPosition = value; }
}
private OfficeInfo _OfficeInfo = new OfficeInfo();
public OfficeInfo OfficeInfo
{
get { return _OfficeInfo; }
set { _OfficeInfo = 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 + -