using Aucma.Scada.Model.domain; using System.Collections.Generic; namespace HighWayIot.Repository.service { public interface IBaseBomInfoService { List GetBomInfos(); /// /// 根据成品物料码获取自己BOM信息 /// /// /// /// BaseBomInfo GetChildenBomInfoByMaterialCode(string materialCode, string materialType); /// /// 根据物料编号获取BOM信息 /// /// /// BaseBomInfo GetBomInfoByMaterialCode(string materialCode); } }