Merge branch 'master' of http://192.168.1.2:8033/IRaCIS_Core_Api
commit
397afad22b
|
@ -37,7 +37,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
||||||
private readonly IRepository<TaskAllocationRule> _taskAllocationRuleRepository;
|
private readonly IRepository<TaskAllocationRule> _taskAllocationRuleRepository;
|
||||||
private readonly IRepository<Subject> _subjectRepository;
|
private readonly IRepository<Subject> _subjectRepository;
|
||||||
private readonly IRepository<SubjectUser> _subjectUserRepository;
|
private readonly IRepository<SubjectUser> _subjectUserRepository;
|
||||||
|
|
||||||
private readonly IRepository<ReadModule> _readModuleRepository;
|
private readonly IRepository<ReadModule> _readModuleRepository;
|
||||||
|
|
||||||
private readonly IRepository<VisitTaskReReading> _visitTaskReReadingRepository;
|
private readonly IRepository<VisitTaskReReading> _visitTaskReReadingRepository;
|
||||||
|
@ -614,9 +613,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 访视任务
|
/// 访视任务
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -704,9 +700,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// PM阅片跟踪
|
/// PM阅片跟踪
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -749,8 +742,6 @@ namespace IRaCIS.Core.Application.Service.Allocation
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// PM 重阅追踪
|
/// PM 重阅追踪
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -466,8 +466,13 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//是否附加评估
|
||||||
|
public bool IsAdditionalAssessment { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
//自动 手动生成任务
|
||||||
|
public bool IsAutoCreate { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -804,6 +809,13 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
public class SetCriterionReadingInfoInDto
|
public class SetCriterionReadingInfoInDto
|
||||||
{
|
{
|
||||||
|
|
||||||
|
//是否附加评估
|
||||||
|
public bool IsAdditionalAssessment { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
//自动 手动生成任务
|
||||||
|
public bool IsAutoCreate { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 项目标准ID
|
/// 项目标准ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -552,7 +552,8 @@ namespace IRaCIS.Core.Application
|
||||||
IsGlobalReading = inDto.IsGlobalReading,
|
IsGlobalReading = inDto.IsGlobalReading,
|
||||||
IsArbitrationReading = inDto.IsArbitrationReading,
|
IsArbitrationReading = inDto.IsArbitrationReading,
|
||||||
IsOncologyReading = inDto.IsOncologyReading,
|
IsOncologyReading = inDto.IsOncologyReading,
|
||||||
|
IsAdditionalAssessment=inDto.IsAdditionalAssessment,
|
||||||
|
IsAutoCreate=inDto.IsAutoCreate
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -233,6 +233,13 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool IsMustGlobalReading { get; set; } = false;
|
public bool IsMustGlobalReading { get; set; } = false;
|
||||||
|
|
||||||
|
|
||||||
|
//是否附加评估
|
||||||
|
public bool IsAdditionalAssessment { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
//自动 手动生成任务
|
||||||
|
public bool IsAutoCreate { get; set; }
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue