userandpopedom.cs
来自「企业内部的短信交流管理平台。 设计详细」· CS 代码 · 共 58 行
CS
58 行
using System;
using System.Collections;
namespace Com.SMS.Entity
{
#region UserAndPopedom
/// <summary>
/// UserAndPopedom object for NHibernate mapped table 'UserAndPopedom'.
/// </summary>
public class UserAndPopedom
{
#region Member Variables
protected int _uapId;
protected int _userId;
protected string _pdId;
#endregion
#region Constructors
public UserAndPopedom() { }
public UserAndPopedom( int userId, string pdId )
{
this._userId = userId;
this._pdId = pdId;
}
#endregion
#region Public Properties
public int UapId
{
get {return _uapId;}
set {_uapId = value;}
}
public int UserId
{
get { return _userId; }
set { _userId = value; }
}
public string PdId
{
get { return _pdId; }
set { _pdId = value; }
}
#endregion
}
#endregion
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?