31 lines
799 B
C#
31 lines
799 B
C#
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; }
|
||
}
|
||
}
|