using DefaultEdit.Model; using NextTreatMesDemo.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NextTreatMesDemo.Utils { public interface IServer { #region 生产相关 /// /// 上传记录 /// /// /// XnRestfulResult PostRecord(Rt_ProductionRecordDto rt_ProductionRecord); /// /// 根据cardid获取用户信息 /// /// /// XnRestfulResult GetUserInfo(string cardId); /// /// 验证登录信息(账号密码) /// /// /// /// XnRestfulResult GetUserInfoByAccount(string userId, string userPassword); /// /// 获取容器内容项 /// /// /// /// XnRestfulResult> GetGroupItems(string groupName, string DeviceId); /// /// 获取光固化信息 /// /// /// /// XnRestfulResult GetModels(string modelid, string deviceId); /// /// 获取光固化记录 /// /// /// XnRestfulResult GetProductionRecord(string modelId); XnRestfulResult GetPrintTask(string taskId); #endregion } }