Uat_Study
parent
8d4be2a8e7
commit
32f9c84ab7
|
@ -2035,6 +2035,16 @@
|
||||||
评估原因
|
评估原因
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.OncologyQuestion.QuestionGenre">
|
||||||
|
<summary>
|
||||||
|
问题类型
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.OncologyQuestion.DictionaryCode">
|
||||||
|
<summary>
|
||||||
|
字典code
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.OncologyVisitTaskInfo.EvaluationResult">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.OncologyVisitTaskInfo.EvaluationResult">
|
||||||
<summary>
|
<summary>
|
||||||
评估结果
|
评估结果
|
||||||
|
@ -2045,11 +2055,6 @@
|
||||||
评估原因
|
评估原因
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetOncologyReadingInfoOutDto.TrialEvaluationResult">
|
|
||||||
<summary>
|
|
||||||
评估结果
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetOncologyReadingInfoOutDto.TrialEvaluationReason">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.GetOncologyReadingInfoOutDto.TrialEvaluationReason">
|
||||||
<summary>
|
<summary>
|
||||||
评估原因
|
评估原因
|
||||||
|
@ -5998,11 +6003,6 @@
|
||||||
阅片平台
|
阅片平台
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Contracts.GetTrialReadingInfoOutDto.IsGlobalReading">
|
|
||||||
<summary>
|
|
||||||
全局阅片
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:IRaCIS.Core.Application.Contracts.GetTrialReadingInfoOutDto.ReadingQuestionCriterionSystemId">
|
<member name="P:IRaCIS.Core.Application.Contracts.GetTrialReadingInfoOutDto.ReadingQuestionCriterionSystemId">
|
||||||
<summary>
|
<summary>
|
||||||
系统标准ID
|
系统标准ID
|
||||||
|
|
|
@ -6,24 +6,26 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
{
|
{
|
||||||
public class PCWG3CalculateService : BaseService, ICriterionCalculateService
|
public class PCWG3CalculateService : BaseService, ICriterionCalculateService
|
||||||
{
|
{
|
||||||
public Task<AddTaskLesionAnswerFromLastTaskOutDto> AddTaskLesionAnswerFromLastTask(AddTaskLesionAnswerFromLastTaskInDto inDto)
|
public async Task<AddTaskLesionAnswerFromLastTaskOutDto> AddTaskLesionAnswerFromLastTask(AddTaskLesionAnswerFromLastTaskInDto inDto)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
return new AddTaskLesionAnswerFromLastTaskOutDto();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task CalculateTask(CalculateTaskInDto inDto)
|
public async Task CalculateTask(CalculateTaskInDto inDto)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<object> GetReportVerify(GetReportVerifyInDto inDto)
|
public async Task<object> GetReportVerify(GetReportVerifyInDto inDto)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
return new() {
|
||||||
|
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task VerifyVisitTaskQuestions(VerifyVisitTaskQuestionsInDto inDto)
|
public async Task VerifyVisitTaskQuestions(VerifyVisitTaskQuestionsInDto inDto)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue