using Admin.NET.Core.Util.LowCode.Dto;
using System;
namespace Admin.NET.Application
{
///
/// 客户档案输出参数
///
public class BaseCustomerOutput
{
///
/// 客户编号
///
public string CustCode { get; set; }
///
/// 客户中文名称
///
public string CustChinaName { get; set; }
///
/// 客户英文名称
///
public string CustEnglishName { get; set; }
///
/// 助记码
///
public string MnemonicCode { get; set; }
///
/// 类型
///
public Admin.NET.Core.BaseCustomerTypeEnum CustType { get; set; }
///
/// 类型名称
///
public string CustTypeName { get; set; }
///
/// 联系人
///
public string LinkMan { get; set; }
///
/// 电话
///
public string Phone { get; set; }
///
/// 电子邮件
///
public string Email { get; set; }
///
/// 邮编
///
public string ZipCode { get; set; }
///
/// 省份
///
public string Province { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 是否禁用
///
public bool? IsDisabled { get; set; }
///
/// Id主键
///
public long? Id { get; set; }
///
/// 创建时间
///
public DateTimeOffset? CreatedTime { get; set; }
///
/// 更新时间
///
public DateTimeOffset? UpdatedTime { get; set; }
///
/// 创建者名称
///
public string CreatedUserName { get; set; }
///
/// 修改者名称
///
public string UpdatedUserName { get; set; }
}
}