using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 单票BC /// public class SingleBCDto { /// /// 订舱主键 /// public long BookingOrderId { get; set; } /// /// 截关时间 /// public Nullable ClosingDate { get; set; } /// /// 截港时间 /// public Nullable CYCutOffTime { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string Voyage { get; set; } /// /// 提单号 /// public string BLNo { get; set; } /// /// 开船日期 /// public Nullable ETD { get; set; } } }