using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// 意见反馈图片表 /// [Table("feedback_picture")] [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; } } }