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

34 lines
835 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 ClassManager_Task_checklistRequest
{
/// <summary>
/// 新增为null
/// </summary>
public long? Id { get; set; }
/// <summary>
/// 备 注:任务类型id
/// 默认值:
///</summary>
public long Task_type_enum { get; set; }
/// <summary>
/// 备 注:任务指标数
/// 默认值:
///</summary>
public int Target_number { get; set; }
/// <summary>
/// 备 注:班级/通用任务类型 1班级2通用
/// 默认值:
///</summary>
public int Task_type { get; set; }
}
}