namespace DOAN.Model.MES.material { /// /// 北泽线边库供应商 /// [SugarTable("material_parts_suppliers")] public class MaterialPartsSuppliers { /// /// 供应商ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "supplier_id")] public int SupplierId { get; set; } /// /// 供应商名称 /// [SugarColumn(ColumnName = "supplier_name")] public string SupplierName { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "contact_person")] public string ContactPerson { get; set; } /// /// 联系电话 /// public string Phone { get; set; } /// /// 电子邮件 /// public string Email { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_at")] public DateTime? CreatedAt { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_at")] public DateTime? UpdatedAt { get; set; } } }