using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 用户海报COS存储记录 /// public partial class UserPosterCache { /// /// 主键ID /// public ulong Id { get; set; } /// /// 用户ID /// public long UserId { get; set; } /// /// 微信APPID /// public string AppId { get; set; } = null!; /// /// 模板内容哈希值 /// public string TemplateHash { get; set; } = null!; /// /// COS访问URL /// public string CosUrl { get; set; } = null!; /// /// 文件大小(字节) /// public uint? FileSize { get; set; } /// /// 文件类型 /// public string? MimeType { get; set; } /// /// 状态(1-有效 0-无效) /// public bool? Status { get; set; } /// /// 创建时间 /// public DateTime CreatedAt { get; set; } /// /// 更新时间 /// public DateTime UpdatedAt { get; set; } /// /// 过期时间 /// public DateTime? ExpiresAt { get; set; } }