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