AllocationRatio.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Text.Json.Serialization;
  7. using System.Threading.Tasks;
  8. namespace wispro.sp.entity
  9. {
  10. /// <summary>
  11. /// 绩效分配比率,默认是案件处理人、对外处理人和核稿人参与分配案件绩效,
  12. /// 默认利率为:50:50:0
  13. /// </summary>
  14. public class AllocationRatio
  15. {
  16. public int ItemId { get; set; }
  17. public int PersonId { get; set; }
  18. /// <summary>
  19. /// 绩效分配比率
  20. /// </summary>
  21. public double? Ratio { get; set; }
  22. /// <summary>
  23. /// 实际金额
  24. /// </summary>
  25. public double? ActualAmount { get; set; }
  26. /// <summary>
  27. /// 绩效分配参与人
  28. /// </summary>
  29. [Description("绩效分配参与人")]
  30. public virtual Staff Person { get; set; }
  31. [JsonIgnore]
  32. /// <summary>
  33. /// 绩效案件
  34. /// </summary>
  35. public virtual PerformanceItem Item { get; set; }
  36. }
  37. }