namespace DS.WMS.Core.TaskPlat.Dtos
{
///
/// 任务附件
///
public class TaskFileDto
{
///
/// 文件路径
///
public string FilePath { get; set; }
///
/// 文件类型
///
public string FileType { get; set; }
///
/// 文件名
///
public string FileName { get; set; }
///
/// 附件类型代码 BC-Booking Confirmation
///
public string FileCategory { get; set; }
///
/// 附件类型名称 BC-Booking Confirmation
///
public string FileCategoryName { get; set; }
}
}