using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ITaskInfoService { public interface IPutakeServer : IService { //更改状态 WebResponseContent ChangeStatus(string id,string gruops); //根据分组展示相应信息 WebResponseContent ShowPutake(string group); //查看具体详情(根据Ntakeid) WebResponseContent GetNjtake(string njid); /// /// 扭矩扳手中第一条要执行的任务 /// /// 组别 /// WebResponseContent PerformTasks(string group); } }