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.
38 lines
743 B
C#
38 lines
743 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.DataSync.Dto
|
|
{
|
|
public class QueryBookingOrder
|
|
{
|
|
/// <summary>
|
|
/// 主提单号
|
|
/// </summary>
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 真提单号
|
|
/// </summary>
|
|
public string TMBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱编号
|
|
/// </summary>
|
|
public string BOOKINGNO { get; set; }
|
|
}
|
|
|
|
public class UpdateBookingOrder: QueryBookingOrder
|
|
{
|
|
|
|
/// <summary>
|
|
/// 业务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
}
|
|
|
|
}
|