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);
|
|
|
|
|
}
|
}
|