using Admin.NET.Application;
namespace Admin.NET.Application;
///
/// 往来单位输出参数
///
public class BaseCustomerOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 客户编号
///
public string? CustCode { get; set; }
///
/// 客户中文名称
///
public string? CustChinaName { get; set; }
///
/// 客户英文名称
///
public string? CustEnglishName { get; set; }
///
/// 助记码
///
public string? MnemonicCode { get; set; }
///
/// 类型
///
public 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; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 修改时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建人Id
///
public long? CreateUserId { get; set; }
///
/// 创建人
///
public string? CreateUserName { get; set; }
///
/// 修改人Id
///
public long? UpdateUserId { get; set; }
///
/// 修改人
///
public string? UpdateUserName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}
public class ForOrdersBaseCustomerOutput
{
///
/// 客户编号
///
public string? CustCode { get; set; }
///
/// 客户中文名称
///
public string? CustChinaName { get; set; }
}