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

56 lines
1.6 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.OA.WorkProcess
{
public class BaseTaskClassRequest
{
/// <summary>
/// 任务id新增时为null修改时必传
/// </summary>
public long? Id { get; set; }
/// <summary>
/// 班级id班级任务时classes_id不为空通用任务时班级id为空 null
/// </summary>
public List<long>? ClassesId { get; set; }
/// <summary>
/// 任务类型id
/// </summary>
public int TaskTypeEnum { get; set; }
/// <summary>
/// 备 注:开始时间
/// 默认值:
///</summary>
public DateTime StartTime { get; set; }
/// <summary>
/// 备 注:结束时间
/// 默认值:
///</summary>
public DateTime EndTime { get; set; }
/// <summary>
/// 任务后缀
/// </summary>
public string? TaskTitleSuffix { get; set; } = "";
/// <summary>
/// 备 注:是否是布置任务。0否默认1是
/// 默认值:
///</summary>
public int IsSuperiorTask { get; set; } = 0;
/// <summary>
/// 备 注:布置任务id如果是布置任务才需要传
/// 默认值:
///</summary>
public long? Superior_Id { get; set; }
/// <summary>
/// 学校ID
/// </summary>
public long SchoolId { get; set; }
}
}