📄 vip.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class Vip
{
string _id;
int _viplevel;
int _vipjf;
string _vipdz;
public string ID
{
get { return this._id; }
set { this._id = value; }
}
public int VipLevel
{
get { return this._viplevel; }
set { this._viplevel = value; }
}
public int VipJf
{
get { return this._vipjf; }
set { this._vipjf = value; }
}
public string VipDz
{
get { return this._vipdz; }
set { this._vipdz = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -