using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace wispro.sp.entity
{
///
/// 绩效分配比率,默认是案件处理人、对外处理人和核稿人参与分配案件绩效,
/// 默认利率为:50:50:0
///
public class AllocationRatio
{
public int ItemId { get; set; }
public int PersonId { get; set; }
///
/// 绩效分配比率
///
public double? Ratio { get; set; }
///
/// 实际金额
///
public double? ActualAmount { get; set; }
///
/// 绩效分配参与人
///
[Description("绩效分配参与人")]
public virtual Staff Person { get; set; }
[JsonIgnore]
///
/// 绩效案件
///
public virtual PerformanceItem Item { get; set; }
}
}