接收BC信息更新订舱Dto

master
zhangxiaofeng 8 months ago
parent 48a49fdb03
commit 3fad45578a

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
namespace Myshipping.Application.Service.BookingOrder.Dto
{
@ -11,5 +12,14 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
public string VESSEL { get; set; }
public string VOYNO { get; set; }
public DateTime? ETD { get; set; }
public List<DownloadFile> Files { get; set; }
public class DownloadFile
{
public string FileName { get; set; }
public string FileType { get; set; }
public string FilePath { get; set; }
}
}
}

Loading…
Cancel
Save