using Microsoft.AspNetCore.Mvc;
using Tiobon.Core.Common;
using Tiobon.Core.IServices.BASE;
using Tiobon.Core.Model;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.IServices
{
///
/// 试卷(自定义服务接口)
///
public interface IGhre_ExamPaperServices :IBaseServices
{
Task> QueryDefault(long Id);
Task> InsertConfig(InsertGhre_ExamPaperConfigInput insert);
Task> Insert1([FromBody] DefaultGhre_ExamPaperPageData insert);
Task Update1(long id, DefaultGhre_ExamPaperPageData insertModel);
Task UpdateStatus(long[] ids, string status);
Task> QueryList(QueryBody body, string status, List ids = null);
Task> GetSelectAsync(long? linkId, string KeyWords);
Task> ExportExcel(QueryExport body, string status);
}
}