using Microsoft.AspNetCore.Mvc; using Tiobon.Core.Common; 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); Task Copy(long id); }