using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core; /// /// 用户反馈表 /// [SugarTable(null, "用户反馈表")] [SysTable] public class SysFeedBack : EntityBase { /// /// 用户ID /// [SugarColumn(ColumnDescription = "用户Id")] public long CId { get; set; } [SugarColumn(ColumnDescription = "标题", IsNullable = true)] public string Title { get; set; } [SugarColumn(ColumnDescription = "内容", IsNullable = true, Length = 800)] public string Content { get; set; } }