Files
Gatedge.NewOrientLandMark.BOS/Gatedge.ScanCode/Models/Vo/BaseData/AttachmentFile.cs
liqionghai d758497f93 1
2025-11-18 17:43:12 +08:00

22 lines
494 B
C#

namespace Gatedge.ScanCode.Models.Vo.BaseData
{
/// <summary>
/// 单据附件
/// </summary>
public class AttachmentFile
{
/// <summary>
/// 文件Id
/// </summary>
public string FileID { get; set; }
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 文件大小
/// </summary>
public string FileSize { get; set; }
}
}