修改项目配置默认值
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
104f46c9db
commit
9ef3e53d77
|
|
@ -222,7 +222,9 @@ namespace IRaCIS.Core.Application.Service
|
|||
//var test = _trialRepository.Where(t => t.CreateTime.Year == DateTime.Now.Year + 1).Select(t => t.Code).DefaultIfEmpty(1).ToList();
|
||||
|
||||
var trial = _mapper.Map<Trial>(trialAddModel);
|
||||
|
||||
//trial.Id = NewId.NextGuid();
|
||||
|
||||
var yearStr = DateTime.Now.Year.ToString();
|
||||
|
||||
trial.Code = currentYearMaxCodeNext;
|
||||
|
|
|
|||
|
|
@ -307,9 +307,9 @@ public partial class Trial : BaseFullDeleteAuditEntity
|
|||
/// <summary>
|
||||
/// IQC自动下一个任务
|
||||
/// </summary>
|
||||
public bool IsIQCAutoNextTask { get; set; }
|
||||
public bool IsIQCAutoNextTask { get; set; } = true;
|
||||
|
||||
public bool IsIQCAutoTaskDistinguishType { get; set; }
|
||||
public bool IsIQCAutoTaskDistinguishType { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 影像质控风险控制
|
||||
|
|
@ -327,7 +327,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
|
|||
/// <summary>
|
||||
/// QC质控下载
|
||||
/// </summary>
|
||||
public bool IsSupportQCDownloadImage { get; set; } = false;
|
||||
public bool IsSupportQCDownloadImage { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 打开失访可读
|
||||
|
|
|
|||
Loading…
Reference in New Issue