35 lines
938 B
C#
35 lines
938 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 ClassMeetingResult
|
|
{
|
|
|
|
/// <summary>
|
|
/// 班级会议记录ID
|
|
/// </summary>
|
|
public long ClassMeetingId { get; set; }
|
|
/// <summary>
|
|
/// 会议标题
|
|
/// </summary>
|
|
public string MeetingTitle { get; set; }
|
|
/// <summary>
|
|
/// 会议纪要
|
|
/// </summary>
|
|
public string MeetingContent { get; set; }
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
/// <summary>
|
|
/// 关联文件
|
|
/// </summary>
|
|
public List<SunTaskFileResult> SunTaskFileResults { get; set; }
|
|
}
|
|
}
|