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

📄 roomtype.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>
    /// 实体类  RoomType
    /// </summary>
    [Serializable]
    public class RoomType
    {
        public RoomType()
        { }

        #region 实体类  RoomType

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

        /// <summary>
        /// 教学设施编码
        /// </summary>
        public int TypeId
        {
            set { this._typeid = value; }
            get { return this._typeid; }
        }

        /// <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 + -