35 lines
921 B
C#
35 lines
921 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 OtherInfoResult
|
|
{
|
|
|
|
/// <summary>
|
|
/// 班干部会议记录ID
|
|
/// </summary>
|
|
public long OtherId { get; set; }
|
|
/// <summary>
|
|
/// 工作描述
|
|
/// </summary>
|
|
public string OtherTitle { get; set; }
|
|
/// <summary>
|
|
/// 工作内容
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
/// <summary>
|
|
/// 关联文件
|
|
/// </summary>
|
|
public List<SunTaskFileResult> SunTaskFileResults { get; set; }
|
|
}
|
|
}
|