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 DataCollectFinishRequest
{
///
/// 任务id
///
public long Id { get; set; }
///
/// 采集ID
///
public long CollectId { get; set; }
///
/// 分析总结
///
public string Remark { get; set; }
}
}