using System; using System.Linq; using System.Text; using SqlSugar; namespace TelegramService.Entity { /// /// /// [SugarTable("cnblogsList")] public partial class cnblogsList { public cnblogsList(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string url {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string title {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string preview {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string author {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string authorUrl {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string time {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? addTime {get;set;} } }