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.

54 lines
1.2 KiB
C#

namespace DS.WMS.Core.Info.Dtos
{
/// <summary>
/// 往来单位联系人导入模型
/// </summary>
public class InfoClientContactModel
{
/// <summary>
/// 所属公司
/// </summary>
public string? CompanyName { get; set; }
/// <summary>
/// 联系人名称
/// </summary>
public string? ContactName { get; set; }
/// <summary>
/// 联系人英文名
/// </summary>
public string? ContactEnName { get; set; }
/// <summary>
/// 电话
/// </summary>
public string? Tel { get; set; }
/// <summary>
/// 手机
/// </summary>
public string? Mobile { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public string? Email { get; set; }
/// <summary>
/// QQ
/// </summary>
public string? QQ { get; set; }
/// <summary>
/// 职务
/// </summary>
public string? Job { get; set; }
/// <summary>
/// 是否默认联系人
/// </summary>
public bool IsDefault { get; set; }
}
}