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