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

📄 tempcourse.cs

📁 这是一个自动排课软件(包含源码,需求分析,详细设计).希望对你有所帮助.
💻 CS
字号:
using System;
using System.Collections;

namespace Entities
{
    public class TempCourse
    {
        private Int32 tempCourseID;
        private string tempCourseName;
        private bool isValid;
        private string tempCourseColor;
        //外键关联的实体字段


        //临时课ID
        public Int32 TempCourseID
        {
            get { return tempCourseID; }
            set { tempCourseID = value; }
        }
        //临时课名称
        public string TempCourseName
        {
            get { return tempCourseName; }
            set { tempCourseName = value; }
        }
        //是否有效
        public bool IsValid
        {
            get { return isValid; }
            set { isValid = value; }
        }
        //
        public string TempCourseColor
        {
            get { return tempCourseColor; }
            set { tempCourseColor = value; }
        }

        //外键关联的实体属性
    }
}

⌨️ 快捷键说明

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