2026-06-11 17:01:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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<JournalPageTaskOutput> DetailAsync(long id);
|
|
|
|
|
|
|
|
|
|
|
|
Task<bool> DeleteAsync(long id);
|
|
|
|
|
|
Task<bool> ComplementAsync(JournalPageTaskComplementInput input);
|
2026-06-22 17:49:37 +08:00
|
|
|
|
|
|
|
|
|
|
Task<long> AddAnswerAsync(JournalTaskAnswerAddInput input);
|
|
|
|
|
|
Task<bool> UpdateAnswerAsync(JournalTaskAnswerUpdateInput input);
|
|
|
|
|
|
Task<bool> DeleteAnswerAsync(long id);
|
2026-06-11 17:01:24 +08:00
|
|
|
|
}
|