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

31 lines
799 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 LearningOfficer.OA.Common.Dtos.OA.WorkProcess.SunTaskFileAndUser;
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
{
public class CoachSubInfoFinishRequest
{
/// <summary>
/// 新增为null编辑时传Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 备 注:学科辅助任务Id
/// 默认值:
/// </summary>
public long CoachId { get; set; }
/// <summary>
/// 备 注:辅导内容
/// 默认值:
/// </summary>
public string CoachContent { get; set; }
public List<BaseTaskFileRequest>? files { get; set; }
}
}