You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
788 B
C#
32 lines
788 B
C#
namespace DS.WMS.Core.TaskPlat.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 任务附件
|
|
/// </summary>
|
|
public class TaskFileDto
|
|
{
|
|
/// <summary>
|
|
/// 文件路径
|
|
/// </summary>
|
|
public string FilePath { get; set; }
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public string FileType { get; set; }
|
|
/// <summary>
|
|
/// 文件名
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件类型代码 BC-Booking Confirmation
|
|
/// </summary>
|
|
public string FileCategory { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件类型名称 BC-Booking Confirmation
|
|
/// </summary>
|
|
public string FileCategoryName { get; set; }
|
|
}
|
|
}
|