|
|
@@ -17,36 +17,36 @@ namespace BPA.SAAS.Manage.Application.AExternalPlatform.Service.Bom.Services |
|
|
|
/// </summary> |
|
|
|
/// <param name="inputDto"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<PageUtil<List<BomDto>>> GetBomPageList(BomPageInputDto inputDto); |
|
|
|
Task<PageUtil<List<BomDto>>> GetBomPageList(BomPageInputDto inputDto); |
|
|
|
/// <summary> |
|
|
|
/// 添加 |
|
|
|
/// </summary> |
|
|
|
/// <param name="dto"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> AddBom(BaseRequestDto<BomInsertDto> dto); |
|
|
|
Task<bool> AddBom(BaseRequestDto<BomInsertDto> dto); |
|
|
|
/// <summary> |
|
|
|
/// 更新 |
|
|
|
/// </summary> |
|
|
|
/// <param name="dto"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> UpdateBom(BaseRequestDto<BomUpdateDto> dto); |
|
|
|
Task<bool> UpdateBom(BaseRequestDto<BomUpdateDto> dto); |
|
|
|
/// <summary> |
|
|
|
/// 删除 |
|
|
|
/// </summary> |
|
|
|
/// <param name="ids"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> DeleteBom(string[] ids); |
|
|
|
Task<bool> DeleteBom(string[] ids); |
|
|
|
/// <summary> |
|
|
|
/// 根据配方id查询配方详情 |
|
|
|
/// </summary> |
|
|
|
/// <param name="bomId"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<BomEntryDto> GetBomEntry(string bomId); |
|
|
|
Task<BomEntryDto> GetBomEntry(string bomId); |
|
|
|
/// <summary> |
|
|
|
/// 添加配方详情 |
|
|
|
/// </summary> |
|
|
|
/// <param name="dto"></param> |
|
|
|
/// <returns></returns> |
|
|
|
public async Task<bool> AddBomEntry(BomEntryInsertDto dto); |
|
|
|
Task<bool> AddBomEntry(BomEntryInsertDto dto); |
|
|
|
} |
|
|
|
} |