namespace DOAN.Model.MES.base_ { /// /// 供应商信息 /// [SugarTable("base_supplier")] public class BaseSupplier { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 供应商代码 /// [SugarColumn(ColumnName = "supplier_no")] public string SupplierNo { get; set; } /// /// 供应商名称 /// [SugarColumn(ColumnName = "supplier_name")] public string SupplierName { get; set; } /// /// 供应商简称 /// [SugarColumn(ColumnName = "supplier_add_name")] public string SupplierAddName { get; set; } /// /// 供应商地址 /// [SugarColumn(ColumnName = "supplier_address")] public string SupplierAddress { get; set; } /// /// 供应商联系人 /// [SugarColumn(ColumnName = "supplier_liaison")] public string SupplierLiaison { get; set; } /// /// 供应商手机号 /// [SugarColumn(ColumnName = "supplier_phone")] public string SupplierPhone { get; set; } /// /// 类别 /// public int? Type { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }