This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
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;
}