26 lines
587 B
C#
26 lines
587 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 DataCollectFileRequest
|
||
{
|
||
|
||
/// <summary>
|
||
/// 关联表id(非任务主表id)
|
||
/// </summary>
|
||
public long ClassesTaskId { get; set; }
|
||
/// <summary>
|
||
/// 文件id
|
||
/// </summary>
|
||
public long FileId { get; set; }
|
||
/// <summary>
|
||
/// 用户ID
|
||
/// </summary>
|
||
public long UserId { get; set; }
|
||
}
|
||
}
|