MES.Service/service/BasicData/MesSupplierManager.cs
@@ -104,7 +104,10 @@ private bool DeleteSupplier(decimal supplierId) { if (base.DeleteById(supplierId)) return true; var deleteById = Db.Deleteable<MesSupplier>() .Where(s => s.Id == supplierId).ExecuteCommand(); if (deleteById > 0) return true; throw new NotImplementedException("删除失败"); }