Commit 7c526014 by 陶然

优化

parent 8c9f3c26
......@@ -32,6 +32,6 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.4.2023.12180")]
[assembly: AssemblyFileVersion("5.4.2023.12180")]
[assembly: AssemblyVersion("5.4.2024.1020")]
[assembly: AssemblyFileVersion("5.4.2024.1020")]
......@@ -14,6 +14,12 @@ namespace Jst.Lims.Timeliness
[Api(Description = "时效统计")]
public class TimelineStatistic
{
public Guid Kvid { get; set; }
public Guid RootKvid { get; set; }
public Guid ParentKvid { get; set; }
public string OwnerName { get; set; }
public Guid OwnerKvid { get; set; }//当前节点所属部门
......@@ -103,6 +109,9 @@ namespace Jst.Lims.Timeliness
query.OrderBy<Report>(o => o.DeadDate);
query.Select<Timeline, Report>((o, r) => new
{
o.Kvid,
o.RootKvid,
o.ParentKvid,
o.OwnerKvid,
o.OwnerName,
r.ReportId,
......@@ -293,6 +302,9 @@ namespace Jst.Lims.Timeliness
query.OrderBy<Report>(o => o.DealDate);
query.Select<Timeline, Report>((o, r) => new
{
o.Kvid,
o.RootKvid,
o.ParentKvid,
o.OwnerKvid,
o.OwnerName,
r.ReportId,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment