修改配置文件,统一实体编码规则

This commit is contained in:
2022-05-30 16:08:32 +08:00
parent 46ef7cbb4a
commit 29f4a73168
14 changed files with 126 additions and 128 deletions
@@ -248,7 +248,7 @@ namespace IRaCIS.Core.Application.Services
dicomStudy.Code = currentNextCodeInt;
dicomStudy.StudyCode = "ST" + currentNextCodeInt.ToString("D5");
dicomStudy.StudyCode = AppSettings.GetCodeStr(currentNextCodeInt, nameof(DicomStudy));
_provider.Set<int>($"{addtionalInfo.TrialId }_{ StaticData.StudyMaxCode}", dicomStudy.Code, TimeSpan.FromMinutes(30));