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

48 lines
1.1 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 SuperiorTaskInfoProcessResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:布置任务id
/// 默认值:
///</summary>
public long? SuperiorId { get; set; }
/// <summary>
/// 备 注:任务id
/// 默认值:
///</summary>
public long? TaskId { get; set; }
/// <summary>
/// 备 注:任务状态。-1未响应1已创建2进行中3已完成4已逾期
/// 默认值:
///</summary>
public long? TaskStatus { get; set; }
/// <summary>
/// 备 注:时间
/// 默认值:
///</summary>
public DateTime? TaskTime { get; set; }
/// <summary>
/// 备 注:任务接收人id
/// 默认值:
///</summary>
public long? TaskUserId { get; set; }
}
}