using System; using System.Collections.Generic; using System.Text; using Datory; using Datory.Annotations; namespace GxPress.Entity { /// /// 反馈意见 /// [DataTable("tede_Feedback")] public class Feedback : Datory.Entity { /// /// 用户ID /// [DataColumn] public int UserId { get; set; } /// ///反馈类型(1 功能异常 2 体验优化) /// [DataColumn] public int FeedbackType { get; set; } /// /// 反馈类容 /// [DataColumn] public string Content { get; set; } } }