feat: 文传易匿名临时文件传输站初始版本

- 后端 .NET 8 + FreeSql + 阿里云 OSS,支持共享/私密/标签三种文件模式
- 前端 Vue3 + Vite + TDesign,上传/取件/管理三页
- 取件码/二维码/海报合成(含保存二维码为图片)
- deploy/ 部署文档与一键 FTP 发布脚本
- appsettings.json 含真实凭据,已 gitignore 不入库
This commit is contained in:
2026-08-24 00:03:28 +08:00
commit 1bfc72f9cb
40 changed files with 6849 additions and 0 deletions
@@ -0,0 +1,17 @@
namespace WenChuanyi.Api.Dtos;
/// <summary>上传响应:取件凭证 + 管理码 + 文件信息</summary>
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; }
/// <summary>取件页链接(二维码内容)</summary>
public string PickUrl { get; set; } = null!;
}