科室经济汇总实发绩效字段修改

parent 09296727
......@@ -86,7 +86,7 @@ public class PerDataAccountDoctor : IPerData
/// <summary>
/// 实发绩效
/// </summary>
public decimal GiveFee { get => (PerforTotal * ScoringAverage + Extra + OtherPerfor2) * AdjustFactor; set => giveFee = value; }
public decimal RealGiveFee { get => (PerforTotal * ScoringAverage + Extra + OtherPerfor2) * AdjustFactor; set => giveFee = value; }
/// <summary>
/// 人均绩效
/// </summary>
......
......@@ -85,7 +85,7 @@ public class PerDataAccountNurse : IPerData
/// <summary>
/// 实发绩效
/// </summary>
public decimal GiveFee { get => (PerforTotal * ScoringAverage + Extra + OtherPerfor2) * AdjustFactor; set => giveFee = value; }
public decimal RealGiveFee { get => (PerforTotal * ScoringAverage + Extra + OtherPerfor2) * AdjustFactor; set => giveFee = value; }
/// <summary>
/// 人均绩效
/// </summary>
......
......@@ -110,6 +110,6 @@ public class res_accountdoctor
/// <summary>
/// 实发绩效
/// </summary>
public Nullable<decimal> GiveFee { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
}
}
......@@ -110,6 +110,6 @@ public class res_accountnurse
/// <summary>
/// 实发绩效
/// </summary>
public Nullable<decimal> GiveFee { get; set; }
public Nullable<decimal> RealGiveFee { get; set; }
}
}
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