recivebox.cs
来自「企业内部的短信交流管理平台。 设计详细」· CS 代码 · 共 89 行
CS
89 行
using System;
using System.Collections;
namespace Com.SMS.Entity
{
#region ReciveBox
/// <summary>
/// ReciveBox object for NHibernate mapped table 'ReciveBox'.
/// </summary>
public class ReciveBox
{
#region Member Variables
protected int _reciveId;
protected int _reciveuserId;
protected int _conId;
protected int _senduserId;
protected bool _isDel;
protected bool _isRead;
protected DateTime _reciveTime;
#endregion
#region Constructors
public ReciveBox() { }
public ReciveBox( int reciveuserId, int conId, int senduserId, bool isDel, bool isRead ,DateTime reciveTime)
{
this._reciveuserId = reciveuserId;
this._conId = conId;
this._senduserId = senduserId;
this._isDel = isDel;
this._isRead = isRead;
this._reciveTime=reciveTime;
}
#endregion
#region Public Properties
public int ReciveId
{
get {return _reciveId;}
set {_reciveId = value;}
}
public int ReciveuserId
{
get { return _reciveuserId; }
set { _reciveuserId = value; }
}
public int ConId
{
get { return _conId; }
set { _conId = value; }
}
public int SenduserId
{
get { return _senduserId; }
set { _senduserId = value; }
}
public bool IsDel
{
get { return _isDel; }
set { _isDel = value; }
}
public bool IsRead
{
get { return _isRead; }
set { _isRead = value; }
}
public DateTime ReciveTime
{
get{return _reciveTime;}
set{_reciveTime=value;}
}
#endregion
}
#endregion
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?