修改转发问题
parent
e4c3b1abb8
commit
55d3ea2c75
|
@ -511,6 +511,21 @@
|
|||
字典Type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.ForeignKeyTable">
|
||||
<summary>
|
||||
外键Table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.ForeignKeyValue">
|
||||
<summary>
|
||||
外键Ke
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.ForeignKeyText">
|
||||
<summary>
|
||||
外键Text
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:IRaCIS.Core.Application.ViewModel.SystemAnonymizationView">
|
||||
<summary> SystemAnonymizationView 列表视图模型 </summary>
|
||||
</member>
|
||||
|
|
|
@ -212,6 +212,25 @@ namespace IRaCIS.Core.Application.ViewModel
|
|||
public string DictionaryType { get; set; } = string.Empty;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 外键Table
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyTable { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 外键Ke
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyValue { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
///外键Text
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyText { get; set; } = string.Empty;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -195,7 +195,9 @@ namespace IRaCIS.Core.Application.Service
|
|||
DateType=data.DataType,
|
||||
DictionaryCode=data.DictionaryCode,
|
||||
DictionaryType=data.DictionaryType,
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
|
||||
query = query
|
||||
.WhereIf(!iq.Value.IsNullOrEmpty(), x => x.Value == iq.Value)
|
||||
|
|
|
@ -1933,7 +1933,7 @@ namespace IRaCIS.Core.Application.Image.QA
|
|||
SiteId = info.SiteId,
|
||||
SubjectId = info.SubjectId,
|
||||
SubjectVisitId = subjectVisitId,
|
||||
Identification = "NaN-14-0"
|
||||
Identification = "Edit|Visit|Status|Visit-Image Forward"
|
||||
};
|
||||
var targetPath = "/IMPORT-IMAGES/" + info.TrialCode + "_" + info.SubjectCode + "_" + info.VisitName;
|
||||
|
||||
|
|
|
@ -192,6 +192,24 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
public string DictionaryType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典表
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyTable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典Value
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyText { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -544,6 +544,8 @@ namespace IRaCIS.Core.Infra.EFCore
|
|||
|
||||
#region 稽查
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取枚举
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue