24 lines
538 B
C#
24 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.OA.ManagerData
|
|
{
|
|
/// <summary>
|
|
/// 数据采集上传文件
|
|
/// </summary>
|
|
public class DataConllectionUpFileRequest
|
|
{
|
|
/// <summary>
|
|
/// 资料收集id
|
|
/// </summary>
|
|
public long DataCollectionId { get; set; }
|
|
/// <summary>
|
|
/// 文件id
|
|
/// </summary>
|
|
public long FileId { get; set; }
|
|
}
|
|
}
|