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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application.Service.BookingOrder.Dto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public class BillTraceDto
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PWD { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<BillTraceList> Children { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BillTraceList
|
|
|
|
|
{
|
|
|
|
|
public string MBLNO { get; set; }
|
|
|
|
|
|
|
|
|
|
public string YARD { get; set; }
|
|
|
|
|
|
|
|
|
|
public string YardCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CARRIERID { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CARRIER { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool isBook { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|