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 { /// /// 案件处理人分配点数 /// public class ItemStaff { public int ItemId { get; set; } public int DoPersonId { get; set; } /// /// 绩效点数 /// public double? PerformancePoint { get; set; } /// /// 处理人 /// [Description("处理人")] public virtual Staff DoPerson { get; set; } [JsonIgnore] /// /// 绩效案件 /// public virtual PerformanceItem Item { get; set; } } }