using InSituLaboratory.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.IService.History { /// /// 腔体输出反馈接口 /// public interface ICavityOtputFeedBackService : IBaseService { IEnumerable GetCavityOtputFeedBack(string key); } }