using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography.Xml; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 请求运踪港后数据 /// public class QueryTraceAfterPortDto { /// /// 用户 /// public string user_key { get; set; } /// /// 用户密码 /// public string user_secret { get; set; } /// /// 主单号 /// public string referenceno { get; set; } /// /// 船公司代号 /// public string carriercd { get; set; } /// /// 箱号(部分船司需要) SINO-必传 /// public string ctnrno { get; set; } } }