using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using YBDevice.Entity; namespace YBDevice.NApi { /// /// 八电极处理接口 /// public interface IBodyService { /// /// 处理wifi模块发送过来的数据 /// /// /// Task HandlerBodyDataAsync(BodyRequstDto data); /// /// 处理PCH01W发送过来的数据 /// /// /// Task Handler01WDataAsync(BodyRequstDto data); } }