userstate.cs
来自「will let you know the result once they r」· CS 代码 · 共 48 行
CS
48 行
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-7-16 10:24:49
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace MyOffice.Models
{
[Serializable()]
public class UserState
{
private int userStateID;
private string userStateName = String.Empty;
public UserState() { }
public int UserStateID
{
get { return this.userStateID; }
set { this.userStateID = value; }
}
public string UserStateName
{
get { return this.userStateName; }
set { this.userStateName = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?