using MC.ORM;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CP.Model
{
///
/// 专题相关
///
[TableName("zt_column"), PrimaryKey("Id")]
public class ZtColumn
{
public int Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// Logo
///
public string Logo { get; set; }
///
/// 彩种
///
public string Lottery { get; set; }
///
/// 类型
///
public string TypeName { get; set; }
///
/// 热门状态
/// 值越大越热门,特别:=0为禁用状态
///
public int Status { get; set; }
///
/// 作者关键字等
///
public string Words { get; set; }
///
/// 关于
///
public string About { get; set; }
///
/// Url重写路径
///
public string RewriteUrl { get; set; }
///
/// 页面标题
///
public string hTitle { get; set; }
///
/// 页面关键字
///
public string hKeywords { get; set; }
///
/// 页面描述
///
public string hDescription { get; set; }
public DateTime Addtime { get; set; }
}
}