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
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<Dt_Putake>
    {
        //更改状态
        WebResponseContent ChangeStatus(string  id,string gruops);
 
        //根据分组展示相应信息
        WebResponseContent ShowPutake(string group);
 
        //查看具体详情(根据Ntakeid)
        WebResponseContent GetNjtake(string njid);
 
        ////更具任务状态查询
        //WebResponseContent seletTaskeStatus(string status);
 
        //查看任务管理有状态的全部数据
        WebResponseContent GetNJandPu();
    }
}