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.
16 lines
569 B
16 lines
569 B
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 问卷调查(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_SurveyServices : IBaseServices<Ghre_Survey, Ghre_SurveyDto, InsertGhre_SurveyInput, EditGhre_SurveyInput>
|
|
{
|
|
Task<ServiceResult<long>> InsertByStatus(InsertGhre_SurveyInput insertModel, string status);
|
|
|
|
Task<ServiceResult> UpdateStatus(InsertGhre_SurveyInput input, string status);
|
|
|
|
Task<ServiceResult<long>> InsertData(InsertGhre_SurveyExtend insertModel);
|
|
} |