新增获取评估单表单信息接口

master
xiaochanghai 7 months ago
parent 6f1d642f57
commit 27eb0ec883
  1. 59
      Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
  2. 7
      Tiobon.Core/Tiobon.Core.xml

@ -2603,13 +2603,13 @@ WHERE A.IsEnable = 1 AND C.IsEnable = 1 AND C.Status = A.Status";
header.Add(obj); header.Add(obj);
} }
obj = new(); //obj = new();
obj.Add(new JProperty("title", "评价")); //obj.Add(new JProperty("title", "评价"));
obj.Add(new JProperty("field", "EvaluateContent")); //obj.Add(new JProperty("field", "EvaluateContent"));
obj.Add(new JProperty("align", "center")); //obj.Add(new JProperty("align", "center"));
obj.Add(new JProperty("width", 120)); //obj.Add(new JProperty("width", 120));
obj.Add(new JProperty("fixed", null)); //obj.Add(new JProperty("fixed", null));
header.Add(obj); //header.Add(obj);
result.Header = header; result.Header = header;
#endregion #endregion
@ -2630,9 +2630,52 @@ WHERE A.IsEnable = 1 AND C.IsEnable = 1 AND C.Status = A.Status";
obj.Add(new JProperty("Score" + (i + 1), null)); obj.Add(new JProperty("Score" + (i + 1), null));
obj.Add(new JProperty("CanEdit" + (i + 1), null)); obj.Add(new JProperty("CanEdit" + (i + 1), null));
} }
obj.Add(new JProperty("EvaluateContent", null)); //obj.Add(new JProperty("EvaluateContent", null));
body.Add(obj); body.Add(obj);
}); });
obj = new();
obj.Add(new JProperty("Type1", "TotalScore"));
obj.Add(new JProperty("Type1Text", "总分"));
obj.Add(new JProperty("Type2", null));
obj.Add(new JProperty("Type2Text", null));
for (int i = 0; i < records.Count; i++)
{
var record = records[i];
obj.Add(new JProperty("Score" + (i + 1), null));
obj.Add(new JProperty("CanEdit" + (i + 1), null));
}
body.Add(obj);
obj = new();
obj.Add(new JProperty("Type1", "EvaluateContent"));
obj.Add(new JProperty("Type1Text", "总体评价"));
obj.Add(new JProperty("Type2", null));
obj.Add(new JProperty("Type2Text", null));
for (int i = 0; i < records.Count; i++)
{
var record = records[i];
obj.Add(new JProperty("Score" + (i + 1), null));
obj.Add(new JProperty("CanEdit" + (i + 1), null));
}
body.Add(obj);
obj = new();
obj.Add(new JProperty("Type1", "IsPass"));
obj.Add(new JProperty("Type1Text", "面试结果"));
obj.Add(new JProperty("Type2", null));
obj.Add(new JProperty("Type2Text", null));
for (int i = 0; i < records.Count; i++)
{
var record = records[i];
obj.Add(new JProperty("Score" + (i + 1), null));
obj.Add(new JProperty("CanEdit" + (i + 1), null));
}
body.Add(obj);
result.Body = body; result.Body = body;
#endregion #endregion

@ -1508,6 +1508,13 @@
<param name="ids">简历ID</param> <param name="ids">简历ID</param>
<returns></returns> <returns></returns>
</member> </member>
<member name="M:Tiobon.Core.Api.Controllers.Ghrh_ResumeController.QueryAssessForm(System.Int64)">
<summary>
获取安排面试表单信息
</summary>
<param name="id">简历ID</param>
<returns></returns>
</member>
<member name="T:Tiobon.Core.Api.Controllers.Ghrh_ResumeEduBGController"> <member name="T:Tiobon.Core.Api.Controllers.Ghrh_ResumeEduBGController">
<summary> <summary>
教育背景(Controller) 教育背景(Controller)

Loading…
Cancel
Save