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.

35 lines
797 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
public class EmbedQueryTraceFlowDto
{
/// <summary>
/// 提单号
/// </summary>
public string billNo { get; set; }
/// <summary>
/// 船公司代码
/// </summary>
public string carrier { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
public string ctnNo { get; set; }
/// <summary>
/// 查询所有箱明细默认false true-查询所有集装箱 false-按指定箱查询)
/// </summary>
public bool isAllCtn { get; set; } = false;
}
}