using Myshipping.Application.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingOrder.Dto { public class BookingAllData { public List item { get; set; } public List remark { get; set; } public List file { get; set; } public List statuslog { get; set; } public List log { get; set; } public List GoodsStatus { get; set; } //自动引入场站记录信息 public BookingAutoYardImport AutoYardImport { get; set; } } }