using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///软件版本 /// [SugarTable("Soft_Version")] public partial class Soft_Version { public Soft_Version(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:软件类型 /// Default: /// Nullable:True /// public int? SoftTypeId {get;set;} /// /// Desc:软件名称 /// Default: /// Nullable:True /// public string SoftName {get;set;} /// /// Desc:软件版本 /// Default: /// Nullable:True /// public string SoftVersion {get;set;} /// /// Desc:软件更新地址 /// Default: /// Nullable:True /// public string SoftStoreAddress {get;set;} /// /// Desc:文件上传保存路径 /// Default: /// Nullable:True /// public string SoftUrl {get;set;} /// /// Desc:更新执行语句 /// Default: /// Nullable:True /// public string SoftContent {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? SoftCreatTime {get;set;} /// /// Desc:更新数量 /// Default: /// Nullable:True /// public int? SoftUpCount {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} } }