Merge branch 'master' of http://192.168.1.2:8033/IRaCIS_Core_Api
commit
a20ed9c876
|
@ -79,6 +79,14 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class BatchDeteteCriterionMedicineQuestionInDto
|
||||||
|
{
|
||||||
|
public Guid TrialReadingCriterionId { get; set; }
|
||||||
|
|
||||||
|
public List<Guid> Ids { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public class TrialDataFromSystem : ReadingMedicineTrialQuestion
|
public class TrialDataFromSystem : ReadingMedicineTrialQuestion
|
||||||
{
|
{
|
||||||
public Guid SystemQuestionId { get; set; }
|
public Guid SystemQuestionId { get; set; }
|
||||||
|
|
|
@ -452,6 +452,19 @@ namespace IRaCIS.Core.Application.Service
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 批量删除医学审核问题
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="inDto"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
[HttpPost]
|
||||||
|
public async Task<IResponseOutput> BatchDeteteCriterionMedicineQuestion(BatchDeteteCriterionMedicineQuestionInDto inDto)
|
||||||
|
{
|
||||||
|
await _readingMedicineTrialQuestionRepository.BatchDeleteNoTrackingAsync(x => inDto.Ids.Contains(x.Id));
|
||||||
|
var result= await _readingMedicineTrialQuestionRepository.SaveChangesAsync();
|
||||||
|
return ResponseOutput.Result(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 从系统里面选择问题添加到项目里面
|
/// 从系统里面选择问题添加到项目里面
|
||||||
|
|
|
@ -355,6 +355,11 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否加急
|
||||||
|
/// </summary>
|
||||||
|
public bool IsUrgent { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 阅片平台
|
/// 阅片平台
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -940,6 +945,12 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsOncologyReading { get; set; }
|
public bool IsOncologyReading { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否加急
|
||||||
|
/// </summary>
|
||||||
|
public bool IsUrgent { get; set; } = false;
|
||||||
|
|
||||||
public List<AddOrUpdateTrialCriterionAdditional> TrialCriterionAdditionalAssessmentTypeList { get; set; }=new List<AddOrUpdateTrialCriterionAdditional>();
|
public List<AddOrUpdateTrialCriterionAdditional> TrialCriterionAdditionalAssessmentTypeList { get; set; }=new List<AddOrUpdateTrialCriterionAdditional>();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -596,6 +596,7 @@ namespace IRaCIS.Core.Application
|
||||||
IsGlobalReading = inDto.IsGlobalReading,
|
IsGlobalReading = inDto.IsGlobalReading,
|
||||||
IsArbitrationReading = inDto.IsArbitrationReading,
|
IsArbitrationReading = inDto.IsArbitrationReading,
|
||||||
IsOncologyReading = inDto.IsOncologyReading,
|
IsOncologyReading = inDto.IsOncologyReading,
|
||||||
|
IsUrgent= inDto.IsUrgent,
|
||||||
IsAdditionalAssessment = inDto.IsAdditionalAssessment,
|
IsAdditionalAssessment = inDto.IsAdditionalAssessment,
|
||||||
IsAutoCreate = inDto.IsAutoCreate
|
IsAutoCreate = inDto.IsAutoCreate
|
||||||
|
|
||||||
|
|
|
@ -115,6 +115,11 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public CriterionType CriterionType { get; set; }
|
public CriterionType CriterionType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否加急
|
||||||
|
/// </summary>
|
||||||
|
public bool IsUrgent { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// eCRF报告是否显示在图像页面
|
/// eCRF报告是否显示在图像页面
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue