using System.Collections.Generic; namespace EntrustSettle.Model.Dtos { /// /// 提单提交Dto /// public class OrderSubmitDto { /// /// 提单号列表 /// public string[] MblnoList { get; set; } /// /// 公司Id /// public string CompanyId { get; set; } /// /// 公司名称 /// public string CompanyName { get; set; } /// /// 联系人Id /// public string ContactId { get; set; } /// /// 联系人姓名 /// public string ContactName { get; set; } /// /// 联系人电话 /// public string ContactTel { get; set; } /// /// 服务类型 1:码头堆存缴费 2:查验代理缴费 3:码头换船缴费 /// public int ServiceType { get; set; } /// /// 费用项目列表(将编码使用,连接) 1:港杂费 2:堆存费 /// public string ProjectType { get; set; } /// /// 客户备注 /// public string Remark { get; set; } /// /// 文件Id列表 /// public List AnnexIdList { get; set; } } }