using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace Blahblah.FlowerStory.Server.Data.Model;
///
/// 照片对象
///
[Table("photos")]
public class PhotoItem
{
///
/// 自增 id,主键
///
[Column("pid")]
[Key]
[Required]
public int Id { get; set; }
///
/// 关联人 id
///
[Column("uid")]
[ForeignKey(nameof(Owner))]
[Required]
public required int OwnerId { get; set; }
///
/// 关联人
///
[JsonIgnore]
public UserItem? Owner { get; set; }
///
/// 关联花草 id
///
[Column("fid")]
[ForeignKey(nameof(Flower))]
public int? FlowerId { get; set; }
///
/// 关联的花草
///
[JsonIgnore]
public FlowerItem? Flower { get; set; }
///
/// 关联的事件 id
///
[Column("rid")]
[ForeignKey(nameof(Record))]
public int? RecordId { get; set; }
///
/// 关联的事件
///
[JsonIgnore]
public RecordItem? Record { get; set; }
///
/// 图片类型
///
[Column("filetype")]
[Required]
public required string FileType { get; set; }
///
/// 文件名
///
[Column("filename")]
[Required]
public required string FileName { get; set; }
///
/// 文件路径
///
[Column("path")]
[Required]
public required string Path { get; set; }
///
/// 上传时间
///
[Column("dateupload")]
[Required]
[JsonPropertyName("dateUpload")]
public required long DateUploadUnixTime { get; set; }
///
/// 上传时间
///
[NotMapped]
[JsonIgnore]
public DateTimeOffset DateUpload => DateTimeOffset.FromUnixTimeMilliseconds(DateUploadUnixTime);
///
/// 图片宽度
///
[Column("width")]
public int? Width { get; set; }
///
/// 图片高度
///
[Column("height")]
public int? Height { get; set; }
///
/// 前端显示的 URL
///
[NotMapped]
public string? Url { get; set; }
}