19 lines
411 B
C#
19 lines
411 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 物联网端数据同步
|
|
/// </summary>
|
|
public interface IIotDataSyncService
|
|
{
|
|
Task DataSyncCallBack(DataSyncCallBackParam paramDto);
|
|
}
|
|
}
|