导表临时修改
continuous-integration/drone/push Build is passing Details

Uat_IRC_Net8
hang 2025-01-21 19:00:01 +08:00
parent 6860f9437b
commit 31f56a39a5
2 changed files with 8 additions and 1 deletions

View File

@ -2343,7 +2343,8 @@ namespace IRaCIS.Core.Application.Service.Common
TableName = "",
QuestionName = _userInfo.IsEn_Us ? t.QuestionEnName : t.QuestionName,
CDISCCode = t.CDISCCode,
TranslateDicName = t.DictionaryCode
TranslateDicName = t.DictionaryCode,
GroupName = _userInfo.IsEn_Us ? t.GroupInfo.GroupEnName:t.GroupInfo.GroupName
}).ToList();

View File

@ -1176,6 +1176,8 @@ namespace IRaCIS.Core.Application.Contracts
public string QuestionName { get; set; }
public string TranslateDicName { get; set; }
public string CDISCCode { get; set; }
public string GroupName { get; set; }
}
@ -1193,6 +1195,10 @@ namespace IRaCIS.Core.Application.Contracts
public string TranslateDicName { get; set; }
public string CDISCCode { get; set; }
//外层问题会重复,所以需要分组名
public string Group { get; set; }
}
public class CommonEvaluationExport
{