读取实发绩效

parent 1be6d94b
...@@ -130,5 +130,6 @@ public class PerDataClinicEmployee : IPerData ...@@ -130,5 +130,6 @@ public class PerDataClinicEmployee : IPerData
/// 行号 /// 行号
/// </summary> /// </summary>
public int RowNumber { get; set; } public int RowNumber { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -120,5 +120,6 @@ public class PerDataEmployee : IPerData ...@@ -120,5 +120,6 @@ public class PerDataEmployee : IPerData
/// 行号 /// 行号
/// </summary> /// </summary>
public int RowNumber { get; set; } public int RowNumber { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -75,6 +75,8 @@ public class PerDataLogisticsEmployee : IPerData ...@@ -75,6 +75,8 @@ public class PerDataLogisticsEmployee : IPerData
/// 行号 /// 行号
/// </summary> /// </summary>
public int RowNumber { get; set; } public int RowNumber { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -230,5 +230,6 @@ public class im_accountbasic ...@@ -230,5 +230,6 @@ public class im_accountbasic
/// 调节后其他绩效 /// 调节后其他绩效
/// </summary> /// </summary>
public Nullable<decimal> AdjustLaterOtherFee { get; set; } public Nullable<decimal> AdjustLaterOtherFee { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -175,5 +175,6 @@ public class im_employee ...@@ -175,5 +175,6 @@ public class im_employee
/// 调节后其他绩效 /// 调节后其他绩效
/// </summary> /// </summary>
public Nullable<decimal> AdjustLaterOtherFee { get; set; } public Nullable<decimal> AdjustLaterOtherFee { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -175,5 +175,6 @@ public class im_employee_clinic ...@@ -175,5 +175,6 @@ public class im_employee_clinic
/// 调节后其他绩效 /// 调节后其他绩效
/// </summary> /// </summary>
public Nullable<decimal> AdjustLaterOtherFee { get; set; } public Nullable<decimal> AdjustLaterOtherFee { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -130,5 +130,6 @@ public class im_employee_logistics ...@@ -130,5 +130,6 @@ public class im_employee_logistics
/// 是否需要二次分配 /// 是否需要二次分配
/// </summary> /// </summary>
public string NeedSecondAllot { get; set; } public string NeedSecondAllot { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
} }
} }
...@@ -27,6 +27,7 @@ public class ExcelReadConfig ...@@ -27,6 +27,7 @@ public class ExcelReadConfig
new ColumnInfo(nameof(PerDataEmployee.Attendance), "出勤率", true), new ColumnInfo(nameof(PerDataEmployee.Attendance), "出勤率", true),
new ColumnInfo(nameof(PerDataEmployee.Adjust), "调节系数", true), new ColumnInfo(nameof(PerDataEmployee.Adjust), "调节系数", true),
new ColumnInfo(nameof(PerDataEmployee.AdjustLaterOtherFee), "调节后其他绩效", true), new ColumnInfo(nameof(PerDataEmployee.AdjustLaterOtherFee), "调节后其他绩效", true),
new ColumnInfo(nameof(PerDataEmployee.RealGiveFee), "实发绩效", true),
}; };
...@@ -54,6 +55,7 @@ public class ExcelReadConfig ...@@ -54,6 +55,7 @@ public class ExcelReadConfig
//new ColumnInfo(nameof(PerDataClinicEmployee.NightWorkPerfor), "夜班费"), //new ColumnInfo(nameof(PerDataClinicEmployee.NightWorkPerfor), "夜班费"),
new ColumnInfo(nameof(PerDataClinicEmployee.Adjust), "调节系数", true), new ColumnInfo(nameof(PerDataClinicEmployee.Adjust), "调节系数", true),
new ColumnInfo(nameof(PerDataClinicEmployee.AdjustLaterOtherFee), "调节后其他绩效", true), new ColumnInfo(nameof(PerDataClinicEmployee.AdjustLaterOtherFee), "调节后其他绩效", true),
new ColumnInfo(nameof(PerDataClinicEmployee.RealGiveFee), "实发绩效", true),
}; };
...@@ -72,6 +74,7 @@ public class ExcelReadConfig ...@@ -72,6 +74,7 @@ public class ExcelReadConfig
new ColumnInfo(nameof(PerDataLogisticsEmployee.OthePerfor), "其他绩效", true), new ColumnInfo(nameof(PerDataLogisticsEmployee.OthePerfor), "其他绩效", true),
new ColumnInfo(nameof(PerDataLogisticsEmployee.NeedSecondAllot), "是否需要二次分配"), new ColumnInfo(nameof(PerDataLogisticsEmployee.NeedSecondAllot), "是否需要二次分配"),
//new ColumnInfo(nameof(PerDataLogisticsEmployee.AdjustLaterOtherFee), "调节后其他绩效", true), //new ColumnInfo(nameof(PerDataLogisticsEmployee.AdjustLaterOtherFee), "调节后其他绩效", true),
new ColumnInfo(nameof(PerDataLogisticsEmployee.RealGiveFee), "实发绩效", true),
}; };
public static ColumnInfo[] AccountBaisc { get; set; } = new ColumnInfo[] public static ColumnInfo[] AccountBaisc { get; set; } = new ColumnInfo[]
...@@ -90,6 +93,7 @@ public class ExcelReadConfig ...@@ -90,6 +93,7 @@ public class ExcelReadConfig
new ColumnInfo(nameof(PerDataAccountBaisc.AssessLaterOtherFee), "考核后其他绩效", true), new ColumnInfo(nameof(PerDataAccountBaisc.AssessLaterOtherFee), "考核后其他绩效", true),
new ColumnInfo(nameof(PerDataAccountBaisc.AdjustFactor), "调节系数", true), new ColumnInfo(nameof(PerDataAccountBaisc.AdjustFactor), "调节系数", true),
new ColumnInfo(nameof(PerDataAccountBaisc.AdjustLaterOtherFee), "调节后其他绩效", true), new ColumnInfo(nameof(PerDataAccountBaisc.AdjustLaterOtherFee), "调节后其他绩效", true),
new ColumnInfo(nameof(PerDataAccountBaisc.RealGiveFee), "实发绩效", true),
}; };
} }
......
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