30 lines
769 B
C#
30 lines
769 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 ClassesActivityFinishRequest
|
|
{
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 班级活动ID
|
|
/// </summary>
|
|
public long ActivityId { get; set; }
|
|
/// <summary>
|
|
/// 活动记录
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 文件
|
|
/// </summary>
|
|
public List<BaseTaskFileRequest>? files { get; set; }
|
|
}
|
|
}
|