查询增加标准Id
parent
6f7af3dcb3
commit
8924117833
|
@ -48,7 +48,12 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
|
|
||||||
public class GroupConsistentQuery : PageInput
|
public class GroupConsistentQuery : PageInput
|
||||||
{
|
{
|
||||||
|
[NotDefault]
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
|
[NotDefault]
|
||||||
|
|
||||||
|
public Guid TrialReadingCriterionId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ConsistentConfirmGenerateCommand
|
public class ConsistentConfirmGenerateCommand
|
||||||
|
|
|
@ -243,7 +243,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
{
|
{
|
||||||
var trialId = inQuery.TrialId;
|
var trialId = inQuery.TrialId;
|
||||||
|
|
||||||
var filterObj = await _taskConsistentRuleRepository.FirstOrDefaultAsync(t => t.TrialId == trialId && t.IsSelfAnalysis == false);
|
var filterObj = await _taskConsistentRuleRepository.FirstOrDefaultAsync(t => t.TrialId == trialId && t.TrialReadingCriterionId==inQuery.TrialReadingCriterionId && t.IsSelfAnalysis == false);
|
||||||
|
|
||||||
|
|
||||||
if (filterObj == null)
|
if (filterObj == null)
|
||||||
|
|
Loading…
Reference in New Issue