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