Uat_Study
he 2022-06-14 13:21:05 +08:00
parent 56aa39cf4d
commit 1460b6f90d
2 changed files with 5 additions and 5 deletions

View File

@ -4117,7 +4117,7 @@
<summary> <summary>
删除系统问题 删除系统问题
</summary> </summary>
<param name="readingQuestionSystemId"></param> <param name="id"></param>
<returns></returns> <returns></returns>
</member> </member>
<member name="M:IRaCIS.Application.Services.ReadingQuestionService.AddSystemDataToTrila(System.Guid)"> <member name="M:IRaCIS.Application.Services.ReadingQuestionService.AddSystemDataToTrila(System.Guid)">
@ -4163,7 +4163,7 @@
<summary> <summary>
删除项目问题标准(项目) 删除项目问题标准(项目)
</summary> </summary>
<param name="readingQuestionCriterionTrialId"></param> <param name="id"></param>
<returns></returns> <returns></returns>
</member> </member>
<member name="M:IRaCIS.Application.Services.ReadingQuestionService.AddOrUpdateReadingQuestionTrial(IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto)"> <member name="M:IRaCIS.Application.Services.ReadingQuestionService.AddOrUpdateReadingQuestionTrial(IRaCIS.Core.Application.Service.Reading.Dto.AddOrUpdateReadingQuestionTrialInDto)">
@ -4183,7 +4183,7 @@
<summary> <summary>
删除项目问题(项目) 删除项目问题(项目)
</summary> </summary>
<param name="readingQuestionTrialId"></param> <param name="id"></param>
<returns></returns> <returns></returns>
</member> </member>
<member name="T:IRaCIS.Application.Services.ReadModuleService"> <member name="T:IRaCIS.Application.Services.ReadModuleService">

View File

@ -177,7 +177,7 @@ namespace IRaCIS.Application.Services
/// </summary> /// </summary>
/// <param name="id"></param> /// <param name="id"></param>
/// <returns></returns> /// <returns></returns>
[HttpDelete("{readingQuestionSystemId:guid}")] [HttpDelete("{id:guid}")]
public async Task<IResponseOutput> DeleteReadingQuestionSystem(Guid id) public async Task<IResponseOutput> DeleteReadingQuestionSystem(Guid id)
{ {
if (await _readingQuestionSystemRepository.AnyAsync(x => x.ParentId == id)) if (await _readingQuestionSystemRepository.AnyAsync(x => x.ParentId == id))
@ -372,7 +372,7 @@ namespace IRaCIS.Application.Services
/// </summary> /// </summary>
/// <param name="id"></param> /// <param name="id"></param>
/// <returns></returns> /// <returns></returns>
[HttpDelete("{readingQuestionTrialId:guid}")] [HttpDelete("{id:guid}")]
public async Task<IResponseOutput> DeleteReadingQuestionTrial(Guid id) public async Task<IResponseOutput> DeleteReadingQuestionTrial(Guid id)
{ {
if (await _readingQuestionTrialRepository.AnyAsync(x => x.ParentId == id)) if (await _readingQuestionTrialRepository.AnyAsync(x => x.ParentId == id))