AllocationRatio.cs 978 B

12345678910111213141516171819202122232425262728293031323334353637
  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. [Description("绩效分配参与人")]
  26. public virtual Staff Person { get; set; }
  27. [JsonIgnore]
  28. /// <summary>
  29. /// 绩效案件
  30. /// </summary>
  31. public virtual PerformanceItem Item { get; set; }
  32. }
  33. }