diff --git a/BPA.SAAS.Manage.Application/AExternalPlatform/Service/Bom/Services/IBomService.cs b/BPA.SAAS.Manage.Application/AExternalPlatform/Service/Bom/Services/IBomService.cs
index a533b2c..9865f2f 100644
--- a/BPA.SAAS.Manage.Application/AExternalPlatform/Service/Bom/Services/IBomService.cs
+++ b/BPA.SAAS.Manage.Application/AExternalPlatform/Service/Bom/Services/IBomService.cs
@@ -17,36 +17,36 @@ namespace BPA.SAAS.Manage.Application.AExternalPlatform.Service.Bom.Services
///
///
///
- public async Task>> GetBomPageList(BomPageInputDto inputDto);
+ Task>> GetBomPageList(BomPageInputDto inputDto);
///
/// 添加
///
///
///
- public async Task AddBom(BaseRequestDto dto);
+ Task AddBom(BaseRequestDto dto);
///
/// 更新
///
///
///
- public async Task UpdateBom(BaseRequestDto dto);
+ Task UpdateBom(BaseRequestDto dto);
///
/// 删除
///
///
///
- public async Task DeleteBom(string[] ids);
+ Task DeleteBom(string[] ids);
///
/// 根据配方id查询配方详情
///
///
///
- public async Task GetBomEntry(string bomId);
+ Task GetBomEntry(string bomId);
///
/// 添加配方详情
///
///
///
- public async Task AddBomEntry(BomEntryInsertDto dto);
+ Task AddBomEntry(BomEntryInsertDto dto);
}
}