using System;
namespace Myshipping.Core.Service
{
///
/// 客户联系人输出参数
///
public class DjyCustomerContactOutput
{
///
/// 主键
///
public long Id { get; set; }
///
/// 客户Id
///
public string RoleCode { get; set; }
///
/// 角色ID
///
public long RoleId { 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; }
}
}