@ -117,7 +117,7 @@ namespace Myshipping.Application.Event
YardCode = order.YARDID == "" ? null : order.YARDID,
CARRIER = order.CARRIER == "" ? null : order.CARRIER,
CARRIERID = order.CARRIERID == "" ? null : order.CARRIERID,
isBook = false,
isBook = order.IsBookingYZ is "2" or "3",
AlertEmail = string.Join(";", emailList)
});
@ -33,6 +33,9 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
public string CARRIER { get; set; }
/// <summary>
/// 是否订阅港后运踪
/// </summary>
public bool isBook { get; set; }
public string AlertEmail { get; set; }