using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///配置表
///
[SugarTable("Sys_Config")]
public partial class Sys_Config
{
public Sys_Config(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:名称
/// Default:
/// Nullable:True
///
public string Name {get;set;}
///
/// Desc:项
/// Default:
/// Nullable:True
///
public string Item {get;set;}
///
/// Desc:内容
/// Default:
/// Nullable:True
///
public string Content {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
}
}