using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 客户 /// [SugarTable("wms_customer")] public class WmsCustomer { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 编号 /// [SugarColumn(ColumnName = "customer_no")] public string CustomerNo { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "customer_name")] public string CustomerName { get; set; } /// /// 开户行 /// [SugarColumn(ColumnName = "bank_name")] public string BankName { get; set; } /// /// 银行账户 /// [SugarColumn(ColumnName = "bank_account")] public string BankAccount { get; set; } /// /// 应收款 /// 默认值: 0.00 /// [SugarColumn(ColumnName = "receivable_amount")] public decimal? ReceivableAmount { get; set; } /// /// 地址 /// [SugarColumn(ColumnName = "address")] public string Address { get; set; } /// /// 手机号 /// [SugarColumn(ColumnName = "mobile")] public string Mobile { get; set; } /// /// 座机号 /// [SugarColumn(ColumnName = "tel")] public string Tel { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "customer_person")] public string CustomerPerson { get; set; } /// /// 级别 /// [SugarColumn(ColumnName = "customer_level")] public string CustomerLevel { get; set; } /// /// Email /// [SugarColumn(ColumnName = "email")] public string Email { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 删除标识 /// 默认值: 0 /// [SugarColumn(ColumnName = "del_flag")] public byte DelFlag { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public long? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// /// 修改人 /// [SugarColumn(ColumnName = "update_by")] public long? UpdateBy { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } } }