using BPA.SAAS.Manage.Application.DataBase.Dtos.Bom;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Application.DataBase.Interface
{
public interface IBomService
{
///
/// 查询所有配方信息
///
///
Task> GetBomList();
///
/// 根据配方id查询配方信息
///
///
///
Task GetBomList(string bomId);
///
/// 添加
///
///
///
Task AddBom(BomInputDto dto);
///
/// 更新
///
///
///
Task UpdateBom(BomInputDto dto);
/// 更新配方详情
///
///
///
Task UpdateBomBatcing(BomBatcingInputDto dto);
///
/// 删除
///
///
///
Task DeleteBom(string id);
///
/// 添加
///
///
///
Task AddBomType(AddBomTypeInputDto dto);
///
/// 配方分类列表
///
///
Task> GetBomTypeList();
///
///获取 配方列表
///
///
///
Task BomPage(BomPageInputDto inputDto);
///
/// 添加配方
///
///
///
Task AddBom(BomCreateInputDto dto);
///
/// 删除配方
///
///
///
Task DelBom(string id);
}
}