计算修改

This commit is contained in:
he
2024-03-07 10:25:05 +08:00
parent 35f01818dd
commit 9bfd89cb9b
12 changed files with 240 additions and 30 deletions
@@ -1,5 +1,6 @@
using IRaCIS.Core.Application.Service.Reading.Dto;
using IRaCIS.Core.Application.ViewModel;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -52,6 +53,15 @@ namespace IRaCIS.Core.Application.Service
/// <returns></returns>
Task<int> GetDeleteLesionStatrIndex(DeleteReadingRowAnswerInDto inDto);
/// <summary>
/// 获取阅片的计算数据
/// </summary>
/// <param name="inDto"></param>
/// <returns></returns>
}
Task<object> GetReadingCalculationData(GetReadingCalculationDataInDto inDto);
}
}
@@ -51,5 +51,13 @@ namespace IRaCIS.Core.Application.Service
/// </summary>
/// <returns></returns>
Task<int> GetDeleteLesionStatrIndex(DeleteReadingRowAnswerInDto inDto);
}
/// <summary>
/// 获取阅片的计算数据
/// </summary>
/// <param name="inDto"></param>
/// <returns></returns>
Task<object> GetReadingCalculationData(GetReadingCalculationDataInDto inDto);
}
}