using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class Picture { public uint Id { get; set; } public string Imgurl { get; set; } = null!; public string Token { get; set; } = null!; public uint Addtime { get; set; } /// /// 1 正常 2 删除 /// public byte Status { get; set; } /// /// 存储位置 1=本地 2= 阿里云 /// public bool? Type { get; set; } }