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.

52 lines
1.4 KiB
C#

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