温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:HuGo版文章发布系统(三层MVC模式)
当前文件:
HuGoMvcArticle/Common/Article.cs[3K,2009-6-12 11:44:47],打开代码结构图
HuGoMvcArticle/Common/Article.cs[3K,2009-6-12 11:44:47],打开代码结构图1using System; 2
3
namespace Common 4
{ 5
public class Article 6
{ 7
/// <summary> 8
/// 文章信息类,封装文章数据类型 9
/// </summary> 10
public Article() { }//构造函数 11
12
int _id; 13
string _title; 14
string _smalltitle; 15
string _content; 16
string _author; 17
int _examine; 18
int _tops; 19
int _recommend; 20
int _BClassID; 21
int _SClassID; 22
DateTime _compose_date; 23
int _browse_time; 24
int _show; 25
byte[] _photo; 26
27
文章信息类属性 149
150
} 151
} 152






}