Compare commits

..

No commits in common. "5a1687b45f5795881aaf4b1a15075a5353325186" and "de4bf6951f8a7493d9994eed7acf4c7740b62ad3" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -89,11 +89,9 @@ namespace IRaCIS.Core.Application.Service
/// 删除表格问题标记
/// </summary>
/// <param name="inDto"></param>
/// <param name="param"></param>
/// <returns></returns>
[HttpPost]
[Route("/DeleteTableQuestionMark/{param}")]
public async Task<bool> DeleteTableQuestionMark(DeleteTableQuestionMarkInDto inDto, string param)
public async Task<bool> DeleteTableQuestionMark(DeleteTableQuestionMarkInDto inDto)
{
await _readingTaskQuestionMarkRepository.DeleteFromQueryAsync(x => x.RowId == inDto.RowId);
return await _readingTaskQuestionMarkRepository.SaveChangesAsync();

View File

@ -2988,7 +2988,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
foreach (var item in entitys.Where(x => x.Entity.GetType() == typeof(ReadingTaskQuestionMark)))
{
var type = GetEntityAuditOpt(item);
var type = AuditOpt.Add;
var entity = item.Entity as ReadingTaskQuestionMark;