using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Text; namespace FreeSql.Site.Entity { /// /// 模板示例 /// public class TemplateExample { [Column(IsIdentity = true, IsPrimary = true)] public int ID { get; set; } /// /// 模板图片 /// public string TemplateImg { get; set; } /// /// 模板名称 /// public string TempateName { get; set; } /// /// 描述 /// public string Describe { get; set; } /// /// 模板路径 /// public string TemplatePath { get; set; } /// /// 查看次数 /// public int WatchCount { get; set; } /// /// 下载统计 /// public int DownloadCount { get; set; } /// /// Star统计 /// public int StarCount { get; set; } /// /// 状态 /// public int Status { get; set; } public DateTime? CreateDt { get; set; } public string CreateBy { get; set; } public DateTime? UpdateDt { get; set; } public string UpdateBy { get; set; } } }