using System;
namespace Myshipping.Application
{
///
/// 订舱关系人输出参数
///
public class BookingOrderContactOutput
{
///
/// 主键
///
public long Id { get; set; }
///
/// 订舱Id
///
public long BookingId { get; set; }
///
/// 角色代码
///
public string RoleCode { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 电话
///
public string Tel { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 排序号
///
public int Sort { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}