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