using System;
using Myshipping.Core;
namespace Myshipping.Core.Service
{
///
/// 订舱客户联系人输出参数
///
public class DjyCustomerContactDto
{
///
/// 主键
///
public long? Id { get; set; }
///
/// 客户Id
///
public long? CustomerId { get; set; }
///
/// 角色ID
///
public string RoleCode { get; set; }
///
/// 角色名称
///
public string RoleName { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 电话
///
public string Tel { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// QQ
///
public string QQ { get; set; }
///
/// 排序号
///
public int? Sort { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 租户ID
///
public long? TenantId { get; set; }
}
}