You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
988 B
29 lines
988 B
using Tiobon.Core.Common;
|
|
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.IServices
|
|
{
|
|
/// <summary>
|
|
/// 培训记录(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_StudyRecordServices :IBaseServices<Ghre_StudyRecord, Ghre_StudyRecordDto, InsertGhre_StudyRecordInput, EditGhre_StudyRecordInput>
|
|
{
|
|
Task<ServiceResult<CoursePublicSearch>> QueryESSSearchFields(QueryBody body);
|
|
|
|
|
|
Task<ServicePageResult<Ghre_StudyRecordESS>> QueryESS(QueryBody filter, string condition, bool? IsEnable = true);
|
|
|
|
Task<ServicePageResult<Ghre_StudyRecordDto>> QueryStaff(QueryBody filter);
|
|
|
|
Task<ServiceResult<Ghre_StudyRecordCourse>> QueryCourse(QueryBody body, long id);
|
|
|
|
|
|
Task<ServiceResult> Join(long courseId);
|
|
|
|
Task<ServiceResult> RecordDuration(long studyRecordId, decimal? duration);
|
|
|
|
Task<ServiceResult<ExcelData>> ExportStaffExcel(QueryExport body);
|
|
}
|
|
} |