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