yanjinhui
2025-03-17 b8510ca5d1e56ef78cd27c45b6bd65a2c13f6b27
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
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 INjTaskServer : IService<Dt_NjTask>
    {
        //提交并保存模板
        WebResponseContent Submtandsave(NjtakeDTO njtakeDTO);
 
        //提交
        WebResponseContent Submit(NotempDTO notempDTO);
 
        /// <summary>
        /// 更具NJtaskID返回这一条数据
        /// </summary>
        /// <param name="njtaskID"></param>
        /// <returns></returns>
        WebResponseContent GetNjdetail(string  njtaskID);
 
        /// <summary>
        /// 更新
        /// </summary>
        /// <param name="putNjtDTO"></param>
        /// <returns></returns>
 
        WebResponseContent PuNjtake(PutNjtDTO putNjtDTO);
 
 
        /// <summary>
        /// 添加任务
        /// </summary>
        /// <param name="addNjtDTO"></param>
        /// <returns></returns>
        WebResponseContent AddNjtake(AddNjtDTO addNjtDTO);
 
 
      
 
    }
}