using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.SearchModel.PRD; using Ropin.Inspection.Model.ViewModel.PRD; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Service.PRD.Interface { public interface IBoxApiService { Task GetUserPriv(string openId,string deviceCode); Task AddDevData(string C_DeviceCode, string C_ConfigCode, string C_Value); Task AddDevAlert(string C_DeviceCode, string C_ConfigCode, string C_Value); Task GetDeviceInfo(string C_MachineCode); Task> GetProductInfo(List models); Task> GetDevProductInfo(string c_DeviceCode); Task UpOffRackProduct(ProductInfoModel model); Task GetUserInfo(string openid); Task> GetAllDeviceInfo(); } }