31 lines
771 B
C#
31 lines
771 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 ClassMeetingFinishRequest
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 班级会议ID
|
|
/// </summary>
|
|
public long ClassMeetingId { get; set; }
|
|
/// <summary>
|
|
/// 会议纪要
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 文件
|
|
/// </summary>
|
|
public List<BaseTaskFileRequest>? files { get; set; }
|
|
}
|
|
}
|