📄 applyclass_tb.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
public class applyClass_tb
{
private Int32 class_id;
public Int32 Class_id
{
get { return class_id; }
set { class_id = value; }
}
private Int32 teacher_id;
public Int32 Teacher_id
{
get { return teacher_id; }
set { teacher_id = value; }
}
private Int32 dept_id;
public Int32 Dept_id
{
get { return dept_id; }
set { dept_id = value; }
}
private string fun;
public string Fun
{
get { return fun; }
set { fun = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -