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

34 lines
847 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.ClassTask
{
public class Task_checklistRequest
{
/// <summary>
/// 新增为null编辑时传Id
/// </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; }
}
}