using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// 意见反馈表 /// [Table("feedback")] [Serializable] public class FeedbackEntity : BaseEntity { public long UserId { get; set; } /// /// 反馈内容 /// public string Content { get; set; } /// /// 状态 0未处理/1已处理 /// public int State { get; set; } /// /// 处理结果 /// public string Result { get; set; } /// /// 备注 /// public string Note { get; set; } } }