vip.cs
来自「饮食管理系统」· CS 代码 · 共 40 行
CS
40 行
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 + =
减小字号Ctrl + -
显示快捷键?