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