2023-06-27

This commit is contained in:
2023-06-27 23:00:34 +08:00
parent c9f7be6f21
commit 81ac82f854
7 changed files with 84 additions and 13 deletions
+60
View File
@@ -0,0 +1,60 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SaveOnlineFileItem
{
/// <summary>
///
/// </summary>
public string md5
{
get;
set;
}
/// <summary>
///
/// </summary>
public string expires
{
get;
set;
}
/// <summary>
///
/// </summary>
public string disposition
{
get;
set;
}
/// <summary>
/// 文件名称
/// </summary>
public string filename
{
get;
set;
}
/// <summary>
/// 保存路径
/// </summary>
public string PCUrl
{
get;
set;
}
/// <summary>
/// 文件路径
/// </summary>
public string UrlStr
{
get;
set;
}
}
}
+1
View File
@@ -155,6 +155,7 @@
<Compile Include="APIItem\QuarterlyProjectQuality.cs" />
<Compile Include="APIItem\ReturnData.cs" />
<Compile Include="APIItem\SafetyBriefing.cs" />
<Compile Include="APIItem\SaveOnlineFileItem.cs" />
<Compile Include="APIItem\SHHSE\NewSYHSEData.cs" />
<Compile Include="APIItem\SHHSE\NewSYHSEDataHiddenDangerCheckItem.cs" />
<Compile Include="APIItem\SHHSE\NewSYHSEDataItem.cs" />