namespace YD_Event.Core.Entities; /// /// 相册图片表 /// public class Pictures : Entity, ICreatedTime { /// /// 相册Id /// public long AlbumId { get; set; } /// /// 图片地址 /// [SugarColumn(Length = 256)] public string Url { get; set; } /// /// 备注 /// [SugarColumn(Length = 256)] public string? Remark { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } }