doctorentity.cs

来自「用c#编写的医院管理系统(部分源码)」· CS 代码 · 共 64 行

CS
64
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Hospital.Hospital.entity
{
    class DoctorEntity
    {
        private int Id;

        public int Id1
        {
            get { return Id; }
            set { Id = value; }
        }
        private string Name;

        public string Name1
        {
            get { return Name; }
            set { Name = value; }
        }
        private string Sex;

        public string Sex1
        {
            get { return Sex; }
            set { Sex = value; }
        }
        private int Age;

        public int Age1
        {
            get { return Age; }
            set { Age = value; }
        }
        private string XueLi;

        public string XueLi1
        {
            get { return XueLi; }
            set { XueLi = value; }
        }
        private string ZhiCheng;

        public string ZhiCheng1
        {
            get { return ZhiCheng; }
            set { ZhiCheng = value; }
        }
        private string KeShi;

        public string KeShi1
        {
            get { return KeShi; }
            set { KeShi = value; }
        }
        public DoctorEntity()
        { 
        }

    }
}

⌨️ 快捷键说明

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