using System; using System.Linq; using System.Text; using SqlSugar; namespace TelegramService.Entity { /// ///贴吧 /// [SugarTable("tieba")] public partial class tieba { public tieba(){ } /// /// Desc:那个贴吧 /// Default: /// Nullable:False /// public string key {get;set;} /// /// Desc:url的id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public string url {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public string title {get;set;} /// /// Desc: /// Default:CURRENT_TIMESTAMP /// Nullable:False /// public DateTime sysaddtime {get;set;} } }