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_DTO.SerialPort; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ITaskInfoService { public interface IProcessServer : IService { /// /// 根据组来分出有多少套筒数量以及步骤 /// /// /// WebResponseContent GetSleeveandStep(string grops); /// /// 根据组和id来添加数据 /// /// /// WebResponseContent AddOrUpdateProcess(AddProcessDTO addProcessDTO); /// /// 根据组来,每次点击它都转到下一道工序 /// /// /// /// WebResponseContent Getcircuit(string grops,string takeid); /// /// 更具当前任务,判断是否可以点击下一步 /// /// /// /// /// WebResponseContent Nextprocess(SetpDTO setpDTO, bool flag); /// /// 按当前步骤,跳转到下一部 /// /// /// /// /// WebResponseContent PreviousProcess(SetpDTO setpDTO); } }