You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
727 B
C#

2 years ago
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
2 years ago
{
public List<BookingServiceItem> item { get; set; }
2 years ago
public List<BookingRemark> remark { get; set; }
public List<BookingFile> file { get; set; }
2 years ago
public List<BookingStatusLogDto> statuslog { get; set; }
public List<BookingLogDto> log { get; set; }
2 years ago
public List<GoodsStatusQuery> GoodsStatus { get; set; }
2 years ago
//自动引入场站记录信息
public BookingAutoYardImport AutoYardImport { get; set; }
2 years ago
}
}