⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 speciality.cs

📁 guan yu pai ke xi tong de ruan jian
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Y2T03.CourseScheduler.CourseModel
{
    /// <summary>
    /// 实体类  Speciality
    /// </summary>
    [Serializable]
    public class Speciality
    {
        public Speciality()
        { }

        #region 实体类  Speciality

        private int _specialityid = 0;
        private string _title = string.Empty;

        /// <summary>
        /// 专业技术方向编号
        /// </summary>
        public int SpecialityId
        {
            set { this._specialityid = value; }
            get { return this._specialityid; }
        }

        /// <summary>
        /// 专业技术名称
        /// </summary>
        public string Title
        {
            set { this._title = value; }
            get { return this._title; }
        }

        public override string ToString()
        {
            return this._title;
        }

        #endregion

    }
}

⌨️ 快捷键说明

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