36 lines
919 B
C#
36 lines
919 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 System_filesRequest
|
||
{
|
||
|
||
/// <summary>
|
||
/// 备 注:原文件名包括后缀例如【111.txt】
|
||
/// 默认值:
|
||
///</summary>
|
||
public string? File_name { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:文件Url路径
|
||
/// 默认值:
|
||
///</summary>
|
||
public string? File_path { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:文件类型(文件后缀名,不带.)
|
||
/// 默认值:
|
||
///</summary>
|
||
public string? File_type { get; set; }
|
||
/// <summary>
|
||
/// 备 注:文件大小(文件大小-kb,不足1kb为1kb)
|
||
/// 默认值:
|
||
///</summary>
|
||
public long? File_size { get; set; }
|
||
}
|
||
}
|