using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VOL.Model.IOT.Request; namespace VOL.Business.IServices.School { /// /// 物联网端数据同步 /// public interface IIotDataSyncService { Task DataSyncCallBack(DataSyncCallBackParam paramDto); } }