namespace WenChuanyi.Api.Dtos; /// 上传响应:取件凭证 + 管理码 + 文件信息 public class UploadResultDto { public long Id { get; set; } public string PickCode { get; set; } = null!; public string AdminCode { get; set; } = null!; public string FileType { get; set; } = null!; public string OriginalName { get; set; } = null!; public long Size { get; set; } public bool IsPermanent { get; set; } public DateTime? ExpiresAt { get; set; } /// 取件页链接(二维码内容) public string PickUrl { get; set; } = null!; }