接口名称修改

This commit is contained in:
he
2025-01-02 16:58:50 +08:00
parent 901438a4a7
commit d31e560a6b
2 changed files with 4 additions and 2 deletions
@@ -89,9 +89,11 @@ namespace IRaCIS.Core.Application.Service
/// 删除表格问题标记
/// </summary>
/// <param name="inDto"></param>
/// <param name="param"></param>
/// <returns></returns>
[HttpPost]
public async Task<bool> DeleteTableQuestionMark(DeleteTableQuestionMarkInDto inDto)
[Route("/DeleteTableQuestionMark/{param}")]
public async Task<bool> DeleteTableQuestionMark(DeleteTableQuestionMarkInDto inDto, string param)
{
await _readingTaskQuestionMarkRepository.DeleteFromQueryAsync(x => x.RowId == inDto.RowId);
return await _readingTaskQuestionMarkRepository.SaveChangesAsync();