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 { //提交并保存模板 WebResponseContent Submtandsave(NjtakeDTO njtakeDTO); //提交 WebResponseContent Submit(NotempDTO notempDTO); /// /// 更具NJtaskID返回这一条数据 /// /// /// WebResponseContent GetNjdetail(string njtaskID); /// /// 更新 /// /// /// WebResponseContent PuNjtake(PutNjtDTO putNjtDTO); /// /// 添加任务 /// /// /// WebResponseContent AddNjtake(AddNjtDTO addNjtDTO); } }