26 lines
564 B
C#
26 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.SysFile
|
|
{
|
|
public class OssSignResult
|
|
{
|
|
/// <summary>
|
|
/// 上传路径
|
|
/// </summary>
|
|
public string filePath { get; set; }
|
|
/// <summary>
|
|
/// 文件限制大小
|
|
/// </summary>
|
|
public long fileSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上传URL
|
|
/// </summary>
|
|
public string UploadUrl { get; set; }
|
|
}
|
|
}
|