bumen.cs
来自「人力管理系统」· CS 代码 · 共 29 行
CS
29 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class Bumen
{
int _id, _pid;
string _bu;
public int ID
{
get { return this._id; }
set { this._id = value; }
}
public int PID
{
get { return this._pid; }
set { this._pid = value; }
}
public string BuMen
{
get { return this._bu; }
set { this._bu = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?