Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ClassTask/ClassesTaskChecklistUserRes...

44 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.ClassTask
{
/// <summary>
/// 通用工作任务指标清单
/// </summary>
public class ClassesTaskChecklistUserResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:任务类型枚举值
/// 默认值:
///</summary>
public long TaskTypeEnum { get; set; }
/// <summary>
/// 备 注:任务类型名称
/// </summary>
public string TaskTypeEnumName { get; set; }
/// <summary>
/// 备 注:任务接受人id
/// 默认值:
///</summary>
public long TaskUserId { get; set; }
/// <summary>
/// 备 注:任务达标数
/// 默认值:
///</summary>
public int TargetNumber { get; set; }
/// <summary>
/// 备 注:班级/通用任务类型 1班级2通用
/// 默认值:
///</summary>
public int TaskType { get; set; }
}
}