c_articleinfo.cs

来自「1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据」· CS 代码 · 共 83 行

CS
83
字号
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 + =
减小字号Ctrl + -
显示快捷键?