18 lines
585 B
C#
18 lines
585 B
C#
|
|
|
|||
|
|
|
|||
|
|
using QYZH.InteractiveMagazine.Models.Dto.Journal;
|
|||
|
|
using QYZH.InteractiveMagazine.Models.Entity;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.IService;
|
|||
|
|
|
|||
|
|
public interface IJournalPageTaskService : IBaseService<JournalPageTask>
|
|||
|
|
{
|
|||
|
|
Task<long?> InsertAsync(JournalPageTaskAddInput input);
|
|||
|
|
Task<bool> UpdateAsync(JournalPageTaskUpdateInput input);
|
|||
|
|
Task<bool> KeywordAnalysisAsync(JournalPageTaskKeywordAnalysis input);
|
|||
|
|
Task<JournalPageTaskOutput> DetailAsync(long id);
|
|||
|
|
|
|||
|
|
Task<bool> DeleteAsync(long id);
|
|||
|
|
Task<bool> ComplementAsync(JournalPageTaskComplementInput input);
|
|||
|
|
}
|