⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recivebox.cs

📁 企业内部的短信交流管理平台。 设计详细
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -