Files
wcs/WCS.BLL/Services/IService/IUploadService.cs
hehaibing-1996 ed3673db03 1
2024-07-05 14:36:34 +08:00

23 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.Model;
using WCS.Model.ApiModel.SingleLight;
using WCS.Model.ApiModel.UpLoad;
using WCS.Model.WebSocketModel;
namespace WCS.BLL.Services.IService
{
/// <summary>
/// 处理、查询报警使用的服务
/// </summary>
public interface IUploadService
{
public Task<ResponseBase> UploadReelInfo(UploadReelInfoRequest request);
public Task<ResponseBase> GetReelInfo(string MatSn);
}
}