修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
05189b4e5a
commit
64c275a91c
|
@ -805,6 +805,7 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
x.DoctorUserId==taskinfo.DoctorUserId).FirstOrDefaultAsync();
|
||||
if (recistTask != null)
|
||||
{
|
||||
_userInfo.AuditIdentification = "HCC";
|
||||
|
||||
|
||||
var trialReadingCriterion=await _readingQuestionCriterionTrialRepository.Where(x => x.Id == taskinfo.TrialReadingCriterionId).FirstOrDefaultAsync();
|
||||
|
|
|
@ -43,6 +43,11 @@
|
|||
|
||||
Guid? BatchId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 稽查额外字符串
|
||||
/// </summary>
|
||||
string? AuditIdentification { get; set; }
|
||||
|
||||
bool IsNotNeedInspection { get; set; }
|
||||
|
||||
|
||||
|
|
|
@ -3910,18 +3910,18 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
//{
|
||||
// entityTypeName = "New/" + "UserSigned";
|
||||
//}
|
||||
|
||||
string result = string.Empty;
|
||||
//默认规则
|
||||
if (IsDistinctionInterface)
|
||||
{
|
||||
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
||||
if (isSelfDefine)
|
||||
{
|
||||
return $"{_userInfo.RequestUrl}/{entityTypeName}";
|
||||
result= $"{_userInfo.RequestUrl}/{entityTypeName}";
|
||||
}
|
||||
else
|
||||
{
|
||||
return $"{_userInfo.RequestUrl}/{entityTypeName}/{type}";
|
||||
result= $"{_userInfo.RequestUrl}/{entityTypeName}/{type}";
|
||||
}
|
||||
|
||||
|
||||
|
@ -3931,15 +3931,22 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
|||
//自定义 标识后面 补充由代码上层的 extraIdentification 附加
|
||||
if (isSelfDefine)
|
||||
{
|
||||
return $"{entityTypeName}";
|
||||
result = $"{entityTypeName}";
|
||||
}
|
||||
else
|
||||
{
|
||||
return $"{entityTypeName}/{type}";
|
||||
result = $"{entityTypeName}/{type}";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (_userInfo.AuditIdentification != null)
|
||||
{
|
||||
result = result + "/" + _userInfo.AuditIdentification;
|
||||
}
|
||||
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue