using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///软件管理 /// [SugarTable("Soft_Manage")] public partial class Soft_Manage { public Soft_Manage(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:软件名称 /// Default: /// Nullable:True /// public string SoftName {get;set;} /// /// Desc:软件价格 /// Default: /// Nullable:True /// public int? SoftPrice {get;set;} /// /// Desc:软件备注 /// Default: /// Nullable:True /// public string SoftContent {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} } }