using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Index { public class RedPoint { /// /// 工作台待办数量 /// public int WorkBenchNonCount { get; set; } /// /// 资料收集待提交数量 /// public int DataCollectionNonSubCount { get; set; } /// /// 收到的布置工作数量 /// public int SuperiorCount { get; set; } } }