using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///网站联盟信息表
///
[SugarTable("Info_Alliance")]
public partial class Info_Alliance
{
public Info_Alliance(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:标题
/// Default:
/// Nullable:True
///
public string Title {get;set;}
///
/// Desc:内容
/// Default:
/// Nullable:True
///
public string InfoContent {get;set;}
///
/// Desc:排序
/// Default:
/// Nullable:True
///
public int? OrderNum {get;set;}
///
/// Desc:发布时间
/// Default:
/// Nullable:True
///
public DateTime? CreatTime {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:True
///
public DateTime? LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:True
///
public string Operator {get;set;}
///
/// Desc:类型
/// Default:
/// Nullable:True
///
public string Type {get;set;}
}
}