using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Superior
{
///
/// 上级布置任务-用户任务数量明细结果
///
public class SuperiorTaskUserCountDetailResult
{
///
/// 布置id
///
public long SuperiorId { get; set; }
///
/// 未响应数量
///
public int NotResponseCount { get; set; }
///
/// 已创建数量
///
public int CreatedCount { get; set; }
///
/// 进行中数量
///
public int InProgressCount { get; set; }
///
/// 已完成数量
///
public int CompletedCount { get; set; }
///
/// 已逾期数量
///
public int OverdueCount { get; set; }
}
}