teach_tb.cs
来自「asp.net连带c++技术开发」· CS 代码 · 共 60 行
CS
60 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
public class teach_tb
{
private int teach_id;
public int Teach_id
{
get { return teach_id; }
set { teach_id = value; }
}
private string teach_nane;
public string Teach_nane
{
get { return teach_nane; }
set { teach_nane = value; }
}
private int teach_dep_id;
public int Teach_dep_id
{
get { return teach_dep_id; }
set { teach_dep_id = value; }
}
private string teach_post;
public string Teach_post
{
get { return teach_post; }
set { teach_post = value; }
}
private string teach_info;
public string Teach_info
{
get { return teach_info; }
set { teach_info = value; }
}
private string teach_pwd;
public string Teach_pwd
{
get { return teach_pwd; }
set { teach_pwd = value; }
}
private string teach_sex;
public string Teach_sex
{
get { return teach_sex; }
set { teach_sex = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?