25 lines
537 B
C#
25 lines
537 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 DesktopDataConllectionUpFileRequest
|
|
{
|
|
/// <summary>
|
|
/// 加密数据
|
|
/// </summary>
|
|
public string sign { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件id
|
|
/// </summary>
|
|
public long FileId { get; set; }
|
|
}
|
|
}
|