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<Dt_Process>
|
{
|
//根据组来筛选出工艺表
|
WebResponseContent GetProcess(string gruop);
|
|
//根据组来分出有多少套筒数量以及步骤
|
WebResponseContent GetSleeveandStep(string grops);
|
|
//根据组来添加数据
|
WebResponseContent AddProcess(AddProcessDTO addProcessDTO);
|
|
//编辑(根据id)
|
WebResponseContent Upprocess(PutProcessDTO addProcessDTO);
|
|
//更具组来,每次点击它都转到下一道工序
|
WebResponseContent Getcircuit(string grops);
|
|
|
|
}
|
}
|