@ -9988,6 +9988,7 @@ namespace Myshipping.Application
var files = await _bookingfile.AsQueryable().Filter(null, true).Where(x => x.BookingId == item.Id).ToListAsync();
dto.Files = files.Select(x => new ReceiveBcInfoDto.DownloadFile()
{
Id = x.Id,
FileName = x.FileName,
FileType = x.TypeCode,
FilePath = x.FilePath
@ -17,6 +17,7 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
public class DownloadFile
public long Id { get; set; }
public string FileName { get; set; }
public string FileType { get; set; }
public string FilePath { get; set; }