📄 cl_stuland.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
public class Cl_stuland
{
public Cl_stuland()
{
}
public Cl_stuland(string str_stuid,string str_password)
{
_stuid = str_stuid;
_password = str_password;
}
string _stuid;
public string Stuid
{
get { return _stuid; }
set { _stuid = value; }
}
string _password;
public string Password
{
get { return _password; }
set { _password = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -