Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/SysFile/System_filesRequest.cs

36 lines
919 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}