Commit 327bd342 by Licx

绩效显示别名

parent 3a135e61
...@@ -24,6 +24,11 @@ public class AllotResponse ...@@ -24,6 +24,11 @@ public class AllotResponse
public int Month { get; set; } public int Month { get; set; }
/// <summary> /// <summary>
/// 绩效别名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 绩效发放总金额 /// 绩效发放总金额
/// </summary> /// </summary>
public Nullable<decimal> AllotFee { get; set; } public Nullable<decimal> AllotFee { get; set; }
......
...@@ -26,5 +26,10 @@ public class SecondListResponse : ag_secondallot ...@@ -26,5 +26,10 @@ public class SecondListResponse : ag_secondallot
/// 行政后勤是否显示管理绩效按钮 1 是 2 否 /// 行政后勤是否显示管理绩效按钮 1 是 2 否
/// </summary> /// </summary>
public Nullable<int> IsShowManageButton { get; set; } public Nullable<int> IsShowManageButton { get; set; }
/// <summary>
/// 绩效别名
/// </summary>
public string Name { get; set; }
} }
} }
\ No newline at end of file
...@@ -47,6 +47,11 @@ public class per_allot ...@@ -47,6 +47,11 @@ public class per_allot
public int Month { get; set; } public int Month { get; set; }
/// <summary> /// <summary>
/// 绩效别名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 绩效发放总金额 /// 绩效发放总金额
/// </summary> /// </summary>
public Nullable<decimal> AllotFee { get; set; } public Nullable<decimal> AllotFee { get; set; }
......
...@@ -196,6 +196,7 @@ public List<SecondListResponse> GetSecondList(int userId) ...@@ -196,6 +196,7 @@ public List<SecondListResponse> GetSecondList(int userId)
t.IsArchive = allot.States == 8 ? 1 : 0; t.IsArchive = allot.States == 8 ? 1 : 0;
t.States = allot.States; t.States = allot.States;
t.ShowFormula = allot.ShowFormula; t.ShowFormula = allot.ShowFormula;
t.Name = allot.Name;
} }
t.IsShowManageButton = hospital?.IsShowManageButton ?? (int)States.Disabled; t.IsShowManageButton = hospital?.IsShowManageButton ?? (int)States.Disabled;
}); });
......
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