using FreeSql.DataAnnotations; namespace Znyc.CloudCar.Model.Entities { /// /// 意见反馈图片表 /// [Table(Name = "feedback_picture")] public class FeedbackPicEntity : EntityBase { /// /// 意见反馈Id /// public long FeedbackId { get; set; } /// /// 图片URL /// [Column(StringLength = 125)] #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“PicUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。 public string PicUrl { get; set; } #pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“PicUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。 /// /// 排序 /// public int Sort { get; set; } } }