Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/Task_checklistResult.cs

38 lines
1016 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;
using SqlSugar;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
{
public class Task_checklistResult
{
public long Id { get; set; }
/// <summary>
/// 任务类型id
/// </summary>
public long TaskTypeEnum { get; set; }
/// <summary>
/// 备 注:任务类型名称
/// </summary>
public string TaskTypeEnumName { get; set; } = null!;
/// <summary>
/// 备 注:用户id
/// 默认值:
///</summary>
public long? TaskUserId { get; set; }
/// <summary>
/// 备 注:任务指标数
/// 默认值:
///</summary>
public int TargetNumber { get; set; }
/// <summary>
/// 备 注:班级/通用任务类型 1班级2通用
/// 默认值:
///</summary>
public int TaskType { get; set; }
}
}