doctorinfo.cs

来自「不错的一个做的医院管理系统源码」· CS 代码 · 共 76 行

CS
76
字号
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 + =
减小字号Ctrl + -
显示快捷键?