using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 意见反馈图片表 /// [Table("rm_feedback_pic")] [Serializable] public class FeedbackPicEntity : BaseEntity { /// /// 意见反馈Id /// public long FeedbackId { get; set; } /// /// 图片URL /// public string PicUrl { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 图片是否有效 /// public bool IsEnabled { get; set; } } }