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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.IServices/Ghre/IGhre_UshioPlanServices.cs

11 lines
453 B

namespace Tiobon.Core.IServices;
/// <summary>
/// 【牛尾】培训计划(自定义服务接口)
/// </summary>
public interface IGhre_UshioPlanServices : IBaseServices<Ghre_UshioPlan, Ghre_UshioPlanDto, InsertGhre_UshioPlanInput, EditGhre_UshioPlanInput>
{
Task<ServiceResult<long>> InsertByStatus(InsertGhre_UshioPlanInput insertModel, string status);
Task<ServiceResult> UpdateStatus(InsertGhre_UshioPlanInput input, string status);
}