using System;
namespace Myshipping.Application
{
///
/// 订舱样单输出参数
///
public class BookingSampleBillOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 订舱ID
///
public long BookingId { get; set; }
///
/// TO
///
public string ToName { get; set; }
///
/// ATTN
///
public string Attn { get; set; }
///
/// ATTN电话
///
public string AttnTel { get; set; }
///
/// ATTN邮箱
///
public string AttnMail { get; set; }
///
/// FROM
///
public string FromName { get; set; }
///
/// FROM电话
///
public string FromTel { get; set; }
///
/// FROM邮箱
///
public string FromMail { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}