|
@@ -2120,6 +2120,7 @@ OPTION (MAXRECURSION 0); -- 允许无限递归 ";
|
|
|
.Select((a, b, c) => new TreeNode
|
|
|
{
|
|
|
Id = a.Id,
|
|
|
+ ContentId = b.Id,
|
|
|
Name = a.Name,
|
|
|
ParentId = a.ParentId,
|
|
|
AssessmentProportion = a.AssessmentProportion, //占比
|
|
@@ -2352,7 +2353,7 @@ OPTION (MAXRECURSION 0); -- 允许无限递归 ";
|
|
|
b.AssessmentStandard,
|
|
|
MergeStr = $"【项名称:{b.Name}/目标值:{a.TargetValue}/评估标准:{b.AssessmentStandard}】",
|
|
|
a.AssessmentProportionChi,
|
|
|
- b.Name
|
|
|
+ b.Name
|
|
|
})
|
|
|
.ToList()
|
|
|
.ToDictionary(x => x.ContentSettingId);
|