| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- namespace Admin.NET.Plugin.AiDOP.Universal;
- /// <summary>
- /// 客户主数据(CustMaster 表,外部 ERP 表,只读映射)
- /// </summary>
- [IgnoreTable]
- [SugarTable("CustMaster", "客户主数据")]
- public class CustMaster
- {
- /// <summary>自增列</summary>
- [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
- public int RecID { get; set; }
- /// <summary>客户编号</summary>
- [SugarColumn(ColumnName = "Cust", Length = 8, IsNullable = true)]
- public string? Cust { get; set; }
- /// <summary>简称</summary>
- [SugarColumn(ColumnName = "SortName", Length = 30, IsNullable = true)]
- public string? SortName { get; set; }
- /// <summary>域名</summary>
- [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
- public string? Domain { get; set; }
- /// <summary>地点</summary>
- [SugarColumn(ColumnName = "Site", Length = 8, IsNullable = true)]
- public string? Site { get; set; }
- /// <summary>等级</summary>
- [SugarColumn(ColumnName = "Class", Length = 2, IsNullable = true)]
- public string? Class { get; set; }
- /// <summary>货币</summary>
- [SugarColumn(ColumnName = "Curr", Length = 4, IsNullable = true)]
- public string? Curr { get; set; }
- /// <summary>类别</summary>
- [SugarColumn(ColumnName = "Terms", Length = 8, IsNullable = true)]
- public string? Terms { get; set; }
- /// <summary>信用限额</summary>
- [SugarColumn(ColumnName = "CreditLimit", IsNullable = true)]
- public decimal? CreditLimit { get; set; }
- /// <summary>信用冻结</summary>
- [SugarColumn(ColumnName = "CreditHold", IsNullable = true)]
- public int? CreditHold { get; set; }
- /// <summary>区域</summary>
- [SugarColumn(ColumnName = "Region", Length = 8, IsNullable = true)]
- public string? Region { get; set; }
- /// <summary>发至</summary>
- [SugarColumn(ColumnName = "ShipTo", Length = 8, IsNullable = true)]
- public string? ShipTo { get; set; }
- /// <summary>运输方式</summary>
- [SugarColumn(ColumnName = "ShipVia", Length = 6, IsNullable = true)]
- public string? ShipVia { get; set; }
- /// <summary>语言</summary>
- [SugarColumn(ColumnName = "Language", Length = 4, IsNullable = true)]
- public string? Language { get; set; }
- /// <summary>销售员1</summary>
- [SugarColumn(ColumnName = "Salesperson1", Length = 8, IsNullable = true)]
- public string? Salesperson1 { get; set; }
- /// <summary>应交税</summary>
- [SugarColumn(ColumnName = "Taxable", IsNullable = true)]
- public int? Taxable { get; set; }
- /// <summary>税类型</summary>
- [SugarColumn(ColumnName = "TaxClass", Length = 8, IsNullable = true)]
- public string? TaxClass { get; set; }
- /// <summary>变更日期</summary>
- [SugarColumn(ColumnName = "ModDate", IsNullable = true)]
- public DateTime? ModDate { get; set; }
- /// <summary>创建时间</summary>
- [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- /// <summary>更新时间</summary>
- [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- /// <summary>有效</summary>
- [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
- public int? IsActive { get; set; }
- /// <summary>备注</summary>
- [SugarColumn(ColumnName = "Remark", Length = 255, IsNullable = true)]
- public string? Remark { get; set; }
- /// <summary>税ID</summary>
- [SugarColumn(ColumnName = "TaxID", Length = 30, IsNullable = true)]
- public string? TaxID { get; set; }
- /// <summary>银行帐户</summary>
- [SugarColumn(ColumnName = "BankAcct", Length = 30, IsNullable = true)]
- public string? BankAcct { get; set; }
- }
|