using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.DataSync.Dto { public class QueryBookingOrder { /// /// 主提单号 /// public string MBLNO { get; set; } /// /// 真提单号 /// public string TMBLNO { get; set; } /// /// 订舱编号 /// public string BOOKINGNO { get; set; } } public class UpdateBookingOrder: QueryBookingOrder { /// /// 业务id /// public long Id { get; set; } } }