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_supplier")] public class WmsSupplier { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 编号 /// [SugarColumn(ColumnName = "supplier_no")] public string SupplierNo { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "supplier_name")] public string SupplierName { get; set; } /// /// 开户行 /// [SugarColumn(ColumnName = "bank_name")] public string BankName { get; set; } /// /// 银行账户 /// [SugarColumn(ColumnName = "bank_account")] public string BankAccount { get; set; } /// /// 应付款 /// 默认值: 0.00 /// [SugarColumn(ColumnName = "payable_amount")] public decimal? PayableAmount { get; set; } /// /// 地址 /// [SugarColumn(ColumnName = "address")] public string Address { get; set; } /// /// 手机号 /// [SugarColumn(ColumnName = "mobile_no")] public string MobileNo { get; set; } /// /// 座机号 /// [SugarColumn(ColumnName = "tel_no")] public string TelNo { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "contact")] public string Contact { get; set; } /// /// 级别 /// [SugarColumn(ColumnName = "level")] public string Level { 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; } } }