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