38 lines
1.1 KiB
C#
38 lines
1.1 KiB
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 ClassCadreMeetingResult
|
|
{
|
|
/// <summary>
|
|
/// 班干部会议记录ID
|
|
/// </summary>
|
|
public long ClassCadreId { get; set; }
|
|
/// <summary>
|
|
/// 会议标题
|
|
/// </summary>
|
|
public string MeetingTitle { get; set; }
|
|
/// <summary>
|
|
/// 会议纪要
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
/// <summary>
|
|
/// 关联用户
|
|
/// </summary>
|
|
public List<SunTaskUserResult> sunTaskUserResults { get; set; }
|
|
/// <summary>
|
|
/// 关联文件
|
|
/// </summary>
|
|
public List<SunTaskFileResult> SunTaskFileResults { get; set; }
|
|
}
|
|
}
|