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.

47 lines
1008 B
C#

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; }
2 years ago
public string Gid { get; set; }
public string url { get; set; }
public List<BillTraceList> Children { get; set; }
}
public class BillTraceList
{
2 years ago
public string BusinessId { get; set; }
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; }
}
2 years ago
public class RespCommon
{
public bool Success { get; set; }
public string Message { get; set; }
2 years ago
public object Data { get; set; }
2 years ago
public int Code { get; set; }
}
}