using Admin.Core.IService;
using Admin.Core.Model;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Admin.Core.IService
{
///
/// IBaseBomInfoServices
///
public interface IBaseBomInfoServices : IBaseServices
{
///
/// 根据成品物料码获取自己BOM信息
///
///
///
///
Task GetChildenBomInfoByMaterialCode(string materialCode, string materialType);
}
}