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

📄 c_articleinfo.cs

📁 1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据库dooogo。 2、然后打开web.config修改 <DbProvider type="Club.Fram
💻 CS
字号:
using System;

namespace Club.Framework.Components
{
	/// <summary>
	/// c_ArticleInfo 的摘要说明。
	/// </summary>
	[Serializable]
	public class c_ArticleInfo
	{
		private Int32 m_ID;		private System.DateTime m_PostDate;	//发表时间		private String m_Title;	//文章标题		private String m_Content;	//文章内容		private Int32 m_ArticleType;	//文章类型 1-原创,2-转载		private Int32 m_SortID;		private Int32 m_RegisterID;		private Int32 m_Hits;		private Int32 m_CommentCount;		public Int32 ID		{			get { return m_ID;}			set { m_ID = value;}		}		///<summary>		///发表时间		///</summary>		public System.DateTime PostDate		{			get { return m_PostDate;}			set { m_PostDate = value;}		}		///<summary>		///文章标题		///</summary>		public String Title		{			get { return m_Title;}			set { m_Title = value;}		}		///<summary>		///文章内容		///</summary>		public String Content		{			get { return m_Content;}			set { m_Content = value;}		}		///<summary>		///文章类型 1-原创,2-转载		///</summary>		public Int32 ArticleType		{			get { return m_ArticleType;}			set { m_ArticleType = value;}		}		public Int32 SortID		{			get { return m_SortID;}			set { m_SortID = value;}		}		public Int32 RegisterID		{			get { return m_RegisterID;}			set { m_RegisterID = value;}		}		public Int32 Hits		{			get { return m_Hits;}			set { m_Hits = value;}		}		public Int32 CommentCount		{			get { return m_CommentCount;}			set { m_CommentCount = value;}		}		public c_ArticleInfo()
		{
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -