初始刷

This commit is contained in:
2024-11-28 13:36:05 +08:00
parent b9b7c9090e
commit 88ebd4c300
753 changed files with 62888 additions and 64 deletions

View File

@@ -0,0 +1,18 @@
namespace ZR.Model.Dto
{
public class UploadDto
{
/// <summary>
/// 自定文件名
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 存储目录
/// </summary>
public string FileDir { get; set; }
/// <summary>
/// 文件名生成类型 1 原文件名 2 自定义 3 自动生成
/// </summary>
public int FileNameType { get; set; }
}
}