28 lines
703 B
C#
28 lines
703 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 TeacherTalkInfoFinishRequest
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 谈话ID
|
|
/// </summary>
|
|
public long TeacherTalkId { get; set; }
|
|
/// <summary>
|
|
/// 谈话纪要
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
public List<BaseTaskFileRequest>? files { get; set; }
|
|
}
|
|
}
|