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.
17 lines
645 B
17 lines
645 B
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 培训讲师异动(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_TeacherChangeServices :IBaseServices<Ghre_TeacherChange, Ghre_TeacherChangeDto, InsertGhre_TeacherChangeInput, EditGhre_TeacherChangeInput>
|
|
{
|
|
Task<ServiceResult> UpdateStatus(InsertGhre_TeacherChangeInput input, string status);
|
|
|
|
Task<ServiceResult<long>> InsertByStatus(InsertGhre_TeacherChangeInput insertModel, string status);
|
|
|
|
Task<ServiceResult<Ghre_TeacherChangeDto>> QueryLast(int teacherId);
|
|
} |