33 lines
846 B
C#
33 lines
846 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
|
|
{
|
|
public class DataCollectResult
|
|
{
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public BaseTaskClassResult taskInfo { get; set; }
|
|
/// <summary>
|
|
/// 采集ID
|
|
/// </summary>
|
|
public long CollectId { get; set; }
|
|
/// <summary>
|
|
/// 采集主题
|
|
/// </summary>
|
|
public string CollectTitle { get; set; }
|
|
/// <summary>
|
|
/// 分析总结
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 已采集用户列表
|
|
/// </summary>
|
|
public List<DataCollectUserResult> CollectUsers { get; set; }
|
|
}
|
|
}
|