接收BC信息推送

master
zhangxiaofeng 8 months ago
parent daa712aa4b
commit 6f89e3d87a

@ -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; }

Loading…
Cancel
Save