You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
using System;
|
|
using Znyc.Recruitment.Admin.Commons.Dtos;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 上传结束输出文件对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class UploadFileResultOuputDto : IOutputDto
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件路径物理路径
|
|
/// </summary>
|
|
public string PhysicsFilePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 缩略图
|
|
/// </summary>
|
|
public string Thumbnail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件路径
|
|
/// </summary>
|
|
public string FilePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件大小
|
|
/// </summary>
|
|
public long FileSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public string FileType { get; set; }
|
|
}
|
|
}
|