|
|
|
@ -12,7 +12,7 @@ namespace DS.WMS.Core.Info.Entity;
|
|
|
|
|
public class InfoClient : BaseModelV2<long>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:客户代码
|
|
|
|
|
/// 客户代码(助记码)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客户代码", IsNullable = false, Length = 20)]
|
|
|
|
|
public string CodeName { get; set; }
|
|
|
|
@ -27,19 +27,19 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:客户中文名称或描述信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客户中文名称或描述信息", IsNullable = true, Length = 50)]
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:客户英文简称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客户英文简称", IsNullable = true, Length = 50)]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:客户英文全称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客户英文全称", IsNullable = true, Length = 50)]
|
|
|
|
|
public string EnFullName { get; set; }
|
|
|
|
|
public string? EnFullName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:客户状态
|
|
|
|
@ -51,7 +51,7 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:通讯地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "通讯地址", IsNullable = true, Length = 1000)]
|
|
|
|
|
public string Address { get; set; }
|
|
|
|
|
public string? Address { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:邮箱
|
|
|
|
@ -63,75 +63,74 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:网页
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "网页", IsNullable = true, Length = 50)]
|
|
|
|
|
public string Web { get; set; }
|
|
|
|
|
public string? Web { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "电话", IsNullable = true, Length = 50)]
|
|
|
|
|
public string Tel { get; set; }
|
|
|
|
|
public string? Tel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:传真
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "传真", IsNullable = true, Length = 50)]
|
|
|
|
|
public string Fax { get; set; }
|
|
|
|
|
public string? Fax { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:负责人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "负责人", IsNullable = true, Length = 20)]
|
|
|
|
|
public string Chief { get; set; }
|
|
|
|
|
public string? Chief { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:所属揽货人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "所属揽货人", IsNullable = true)]
|
|
|
|
|
public long SaleId { get; set; }
|
|
|
|
|
public long? SaleId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:所属操作人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "所属操作人", IsNullable = true)]
|
|
|
|
|
public long Op { get; set; }
|
|
|
|
|
public long? Op { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:所属单证
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "所属单证", IsNullable = true)]
|
|
|
|
|
public long Doc { get; set; }
|
|
|
|
|
|
|
|
|
|
public long? Doc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:国家
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "国家", Length = 50, IsNullable = true)]
|
|
|
|
|
public string Country { get; set; }
|
|
|
|
|
public string? Country { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:省或州
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "省或州", Length = 50, IsNullable = true)]
|
|
|
|
|
public string Province { get; set; }
|
|
|
|
|
public string? Province { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:城市
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "城市", Length = 50, IsNullable = true)]
|
|
|
|
|
public string City { get; set; }
|
|
|
|
|
public string? City { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提单信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "提单信息", Length = 600, IsNullable = true)]
|
|
|
|
|
public string BLContent { get; set; }
|
|
|
|
|
public string? BLContent { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否停用该客户信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "是否停用该客户信息", DefaultValue = "0")]
|
|
|
|
|
public bool? IsStop { get; set; } = false;
|
|
|
|
|
public bool IsStop { get; set; }
|
|
|
|
|
|
|
|
|
|
///// <summary>
|
|
|
|
|
///// Desc:发票抬头1
|
|
|
|
@ -264,84 +263,79 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:等级
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "等级", Length = 1, IsNullable = true)]
|
|
|
|
|
public string Level { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string? Level { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:QQ
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "QQ", Length = 50, IsNullable = true)]
|
|
|
|
|
public string QQ { get; set; }
|
|
|
|
|
public string? QQ { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:MSN
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "MSN", Length = 50, IsNullable = true)]
|
|
|
|
|
public string MSN { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? MSN { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:财务应收账款代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "财务应收账款代码", Length = 50, IsNullable = true)]
|
|
|
|
|
public string FARCode { get; set; }
|
|
|
|
|
public string? FARCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:财务应付账款代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "财务应付账款代码", Length = 50, IsNullable = true)]
|
|
|
|
|
public string FAPCode { get; set; }
|
|
|
|
|
public string? FAPCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:冷藏费率
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "冷藏费率", Length = 50, DefaultValue = "0", IsNullable = true)]
|
|
|
|
|
public string UnitPrice { get; set; }
|
|
|
|
|
public string? UnitPrice { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:企业备案号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "企业备案号", Length = 50, IsNullable = true)]
|
|
|
|
|
public string RegistrationNo { get; set; }
|
|
|
|
|
public string? RegistrationNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:财务序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "财务序号", Length = 50, IsNullable = true)]
|
|
|
|
|
public string OrderNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string? OrderNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:纳税人识别号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "纳税人识别号", Length = 30, IsNullable = true)]
|
|
|
|
|
public string TaxNo { get; set; }
|
|
|
|
|
public string? TaxNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:EDI代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "EDI代码", Length = 20, IsNullable = true)]
|
|
|
|
|
public string EDICode { get; set; }
|
|
|
|
|
public string? EDICode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:EDI代码2
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "EDI代码2", Length = 20, IsNullable = true)]
|
|
|
|
|
public string EDICode2 { get; set; }
|
|
|
|
|
public string? EDICode2 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:EDI代码3
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "EDI代码3", Length = 20, IsNullable = true)]
|
|
|
|
|
public string EDICode3 { get; set; }
|
|
|
|
|
public string? EDICode3 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:组织机构代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "组织机构代码", Length = 50, IsNullable = true)]
|
|
|
|
|
public string OrganizationCode { get; set; }
|
|
|
|
|
public string? OrganizationCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所属集团ID
|
|
|
|
@ -359,32 +353,32 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:企业商检备案号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "商检备案号", Length = 50, IsNullable = true)]
|
|
|
|
|
public string InspectionNo { get; set; }
|
|
|
|
|
public string? InspectionNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审批状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "审批状态", DefaultValue = "0")]
|
|
|
|
|
public AuditStatusEnum? AuditStatus { get; set; } = AuditStatusEnum.Approve;
|
|
|
|
|
public AuditStatusEnum AuditStatus { get; set; } = AuditStatusEnum.Approve;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审批时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "审批时间", IsNullable = true)]
|
|
|
|
|
public DateTime? AuditTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 审批意见
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "审批意见", Length = 100, IsNullable = true)]
|
|
|
|
|
public string AuditNote { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string? AuditNote { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:默认付费方式
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "默认付费方式", Length = 20, IsNullable = true)]
|
|
|
|
|
public string FeeFRT { get; set; }
|
|
|
|
|
public string? FeeFRT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:业务来源Id
|
|
|
|
|
/// </summary>
|
|
|
|
@ -395,92 +389,91 @@ public class InfoClient : BaseModelV2<long>
|
|
|
|
|
/// Desc:发票银行
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发票银行", Length = 150, IsNullable = true)]
|
|
|
|
|
public string InvoiceBank { get; set; }
|
|
|
|
|
public string? InvoiceBank { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:发票地址电话
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发票地址电话", Length = 200, IsNullable = true)]
|
|
|
|
|
public string InvoiceAddrTel { get; set; }
|
|
|
|
|
public string? InvoiceAddrTel { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:所属分部
|
|
|
|
|
/// 所属分部
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "所属分部")]
|
|
|
|
|
public long? SaleOrgId { get; set; }
|
|
|
|
|
[SugarColumn(ColumnDescription = "所属分部", IsNullable = true)]
|
|
|
|
|
public string? SaleOrgId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提成比例
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "提成比例", Length = 18, DecimalDigits = 2, DefaultValue = "0")]
|
|
|
|
|
public decimal? CommissionRate { get; set; } = 0;
|
|
|
|
|
public decimal CommissionRate { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:分成比例
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "分成比例", Length = 18, DecimalDigits = 2, DefaultValue = "0")]
|
|
|
|
|
public decimal? ProportionRate { get; set; } = 0;
|
|
|
|
|
public decimal ProportionRate { get; set; } = 0;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:提成参与人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "提成参与人", IsNullable = true)]
|
|
|
|
|
public long CommissionUserId { get; set; }
|
|
|
|
|
public long? CommissionUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:运输公司列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "运输公司列表", Length = 200, IsNullable = true)]
|
|
|
|
|
public string CarrierList { get; set; }
|
|
|
|
|
public string? CarrierList { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:集装箱尺寸
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "集装箱尺寸", Length = 50, IsNullable = true)]
|
|
|
|
|
public string CtnType { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? CtnType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc: 客服
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客服")]
|
|
|
|
|
public long CustomerService { get; set; } = 0;
|
|
|
|
|
public long CustomerService { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:英文简称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "英文简称", Length = 50, IsNullable = true)]
|
|
|
|
|
public string EnShortName { get; set; }
|
|
|
|
|
public string? EnShortName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:仓储费开始日期模式
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "仓储费开始日期模式", Length = 50, IsNullable = true)]
|
|
|
|
|
public string WMSFeeRateType { get; set; }
|
|
|
|
|
public string? WMSFeeRateType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 揽货人名字
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "揽货人名字", Length = 50, IsNullable = true)]
|
|
|
|
|
public string SaleName { get; set; }
|
|
|
|
|
public string? SaleName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作名字
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "操作名字", Length = 50, IsNullable = true)]
|
|
|
|
|
public string OpName { get; set; }
|
|
|
|
|
public string? OpName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 单证名字
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "单证名字", Length = 50, IsNullable = true)]
|
|
|
|
|
public string DocName { get; set; }
|
|
|
|
|
public string? DocName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客服名字
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "客服名字", Length = 50, IsNullable = true)]
|
|
|
|
|
public string CustomerServiceName { get; set; }
|
|
|
|
|
public string? CustomerServiceName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否共享
|
|
|
|
|