Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/SunTaskFileAndUser/SunTaskFileResult.cs

38 lines
963 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}