39 lines
983 B
C#
39 lines
983 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 ClassesActivityResult
|
|
{
|
|
/// <summary>
|
|
/// 活动id
|
|
/// </summary>
|
|
public long ActivityId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:活动主题
|
|
/// 默认值:
|
|
///</summary>
|
|
public string ActivityTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:活动记录
|
|
/// 默认值:
|
|
///</summary>
|
|
public string? Remark { get; set; }
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
/// <summary>
|
|
/// 关联文件
|
|
/// </summary>
|
|
public List<SunTaskFileResult> SunTaskFileResults { get; set; }
|
|
}
|
|
}
|