修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-11-04 10:48:43 +08:00
parent 749bf95761
commit dc7e71dc74
2 changed files with 62 additions and 10 deletions
@@ -674,7 +674,7 @@ namespace IRaCIS.Core.Application.Service
/// </summary>
/// <returns></returns>
[HttpPost]
public async Task<PageOutput<PreviewTheReadingListOutDto>> GetPreviewTheReadingList(PreviewTheReadingListInDto inDto)
public async Task<(PageOutput<PreviewTheReadingListOutDto>,object)> GetPreviewTheReadingList(PreviewTheReadingListInDto inDto)
{
// 这里还需要获取到之前已经添加的
@@ -791,7 +791,9 @@ namespace IRaCIS.Core.Application.Service
PageIndex = inDto.PageIndex,
TotalCount = totalCount,
};
return result;
return (result,new {
NeedReminder=inDto.Id==null,
});
}
#endregion