38 lines
963 B
C#
38 lines
963 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.SunTaskFileAndUser
|
||
{
|
||
/// <summary>
|
||
/// 任务关联文件
|
||
/// </summary>
|
||
public class SunTaskFileResult
|
||
{
|
||
/// <summary>
|
||
/// 文件关联表的id
|
||
/// </summary>
|
||
public long Id { get; set; }
|
||
/// <summary>
|
||
/// 子任务关联表id
|
||
/// </summary>
|
||
public long SunTaskId { get; set; }
|
||
/// <summary>
|
||
/// 文件id
|
||
/// </summary>
|
||
public long FileId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:文件路径
|
||
/// </summary>
|
||
public string FilePath { get; set; }
|
||
/// <summary>
|
||
/// 备 注:文件大小(文件大小-kb,不足1kb为1kb)
|
||
/// 默认值:
|
||
///</summary>
|
||
public long? FileSize { get; set; }
|
||
}
|
||
}
|