Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Superior/SuperiorTaskInfoUserDetailR...

66 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Superior
{
public class SuperiorTaskInfoUserDetailResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:布置任务id
/// 默认值:
///</summary>
public long? SuperiorId { get; set; }
/// <summary>
/// 任务接收人id
/// </summary>
public long TaskUserId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 用户头像
/// </summary>
public string HeadImage { get; set; }
/// <summary>
/// 备 注:任务状态。-1未响应1已创建2进行中3已完成4已逾期
/// </summary>
public int UserTaskStatus { get; set; }
/// <summary>
/// 备 注:创建任务id
/// </summary>
public long? TaskId { get; set; }
/// <summary>
/// 备 注:最后更新时间
/// </summary>
public DateTime UpdateTime { get; set; }
}
public class SuperiorTaskInfoUserListCountResult
{
/// <summary>
/// 未响应
/// </summary>
public int NotResponseCount { get; set; }
/// <summary>
/// 已创建
/// </summary>
public int CreatedCount { get; set; }
/// <summary>
/// 进行中
/// </summary>
public int InProgressCount { get; set; }
/// <summary>
/// 已完成
/// </summary>
public int CompletedCount { get; set; }
/// <summary>
/// 已逾期
/// </summary>
public int OverdueCount { get; set; }
}
}