using System;
namespace Basic.Model
{
///
/// 频道
///
[Serializable]
public partial class channel
{
private int _id;
private int _class_id;
private string _title;
private string _guid;
private int _parent_id;
private string _class_list;
private int _class_layer;
private int _paixu;
private string _url;
private string _path;
private string _content;
private string _seo_title;
private string _seo_keywords;
private string _seo_description;
///
/// 自增ID
///
public int id
{
set { _id = value; }
get { return _id; }
}
///
/// 类别
///
public int class_id
{
set { _class_id = value; }
get { return _class_id; }
}
///
/// 名称
///
public string title
{
set { _title = value; }
get { return _title; }
}
///
/// guid
///
public string guid
{
set { _guid = value; }
get { return _guid; }
}
///
/// 父级
///
public int parent_id
{
set { _parent_id = value; }
get { return _parent_id; }
}
///
/// 栏目集
///
public string class_list
{
set { _class_list = value; }
get { return _class_list; }
}
///
/// 深度
///
public int class_layer
{
set { _class_layer = value; }
get { return _class_layer; }
}
///
/// 排序
///
public int paixu
{
set { _paixu = value; }
get { return _paixu; }
}
///
/// 链接地址
///
public string url
{
set { _url = value; }
get { return _url; }
}
///
/// 图片路径
///
public string path
{
set { _path = value; }
get { return _path; }
}
///
/// 内容
///
public string content
{
set { _content = value; }
get { return _content; }
}
///
/// 优化标题
///
public string seo_title
{
set { _seo_title = value; }
get { return _seo_title; }
}
///
/// 优化关键字
///
public string seo_keywords
{
set { _seo_keywords = value; }
get { return _seo_keywords; }
}
///
/// 优化描述
///
public string seo_description
{
set { _seo_description = value; }
get { return _seo_description; }
}
}
}