21 lines
629 B
C#
21 lines
629 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Tnb.BasicData.Interfaces
|
|
{
|
|
public interface IBasMbomService
|
|
{
|
|
/// <summary>
|
|
/// 根据物料id获取对应的子任务列表
|
|
/// </summary>
|
|
/// <param name="bomId">bomid</param>
|
|
/// <returns></returns>
|
|
Task<dynamic> GetSubMoListByBomId([FromRoute] string bomId);
|
|
|
|
/// <summary>
|
|
/// 根据生产bom工序id获取投入物料
|
|
/// </summary>
|
|
/// <param name="dic">id</param>
|
|
/// <returns></returns>
|
|
Task<dynamic> GetInputMaterialByMbomProcessId(Dictionary<string, string> dic);
|
|
}
|
|
} |