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.

77 lines
1.8 KiB
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; }
/// <summary>
/// 是否订阅港后运踪
/// </summary>
public bool isBook { get; set; }
12 months ago
public string AlertEmail { get; set; }
}
/// <summary>
/// 运踪退订-调用大简云运踪模块的Dto类
/// </summary>
public class BillTraceUnsubscribeDto
{
public string Key { get; set; }
public string PWD { get; set; }
public string Gid { get; set; }
public List<BillTraceUnsubscribeList> Children { get; set; }
}
public class BillTraceUnsubscribeList
{
public BillTraceUnsubscribeList()
{ }
public BillTraceUnsubscribeList(string businessId, string mBLNO)
{
BusinessId = businessId;
MBLNO = mBLNO;
}
public string MBLNO { get; set; }
public string BusinessId { 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; }
}
}