26 lines
616 B
C#
26 lines
616 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 工作台待办数量
|
|
/// </summary>
|
|
public int WorkBenchNonCount { get; set; }
|
|
/// <summary>
|
|
/// 资料收集待提交数量
|
|
/// </summary>
|
|
public int DataCollectionNonSubCount { get; set; }
|
|
/// <summary>
|
|
/// 收到的布置工作数量
|
|
/// </summary>
|
|
public int SuperiorCount { get; set; }
|
|
|
|
}
|
|
}
|