Files
tnb.server/common/Tnb.Common/Models/AnnexModel.cs
2024-04-23 10:16:16 +08:00

45 lines
1.0 KiB
C#
Raw Permalink 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 JNPF.DependencyInjection;
namespace JNPF.Common.Models
{
/// <summary>
/// 附件模型
/// 版 本V3.3.3
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 作 者JNPF开发平台组.
/// </summary>
[SuppressSniffer]
public class AnnexModel
{
/// <summary>
/// 文件ID.
/// </summary>
public string? FileId { get; set; }
/// <summary>
/// 文件名称.
/// </summary>
public string? FileName { get; set; }
/// <summary>
/// 文件大小.
/// </summary>
public string? FileSize { get; set; }
/// <summary>
/// 文件上传时间.
/// </summary>
public DateTime FileTime { get; set; }
/// <summary>
/// 文件状态.
/// </summary>
public string? FileState { get; set; }
/// <summary>
/// 文件类型.
/// </summary>
public string? FileType { get; set; }
}
}