using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// /// public class ShippingBillShortRes { /// /// 主键Id /// public long Id { get; set; } /// /// 是否分单 /// public bool IsPart { get; set; } = false; /// /// 业务Id /// public long BusinessId { get; set; } /// /// 主提单号 /// public string MBLNO { get; set; } /// /// 分提单号 /// public string HBLNO { get; set; } /// /// 详情 /// public ShippingBillRes Detail { get; set; } } }