yanjinhui
2025-03-11 cdd170dd9008d8124d63c76ba186e34cfe61a619
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
 
 
 
    }
}