Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ClassTask/TaskLoginfoResult.cs

42 lines
929 B
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.ClassTask
{
public class TaskLoginfoResult
{
/// <summary>
/// 任务id
/// </summary>
public long TaskId { get; set; }
/// <summary>
/// 备 注:子任务id
/// 默认值:
///</summary>
public long SunTaskId { get; set; }
/// <summary>
/// 备 注:操作日期
/// 默认值:
///</summary>
public DateTime AddDate { get; set; }
/// <summary>
/// 备 注:操作类型。1新增2推进3完成任务
/// 默认值:
///</summary>
public int LogType { get; set; }
/// <summary>
/// 当天操作记录数量
/// </summary>
public int LogCount { get; set; }
}
}