Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/ManagerData/DataConllectionDetailResult.cs

89 lines
2.5 KiB
C#
Raw Permalink 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.ManagerData
{
public class DataConllectionDetailResult
{
public long Id { get; set; }
/// <summary>
/// 备 注:收集主题
/// 默认值:
///</summary>
public string Title { get; set; } = null!;
/// <summary>
/// 备 注:收集要求
/// 默认值:
///</summary>
public string Remark { get; set; } = null!;
/// <summary>
/// 备 注:模板文件id
/// 默认值:
///</summary>
public long? FileId { get; set; }
/// <summary>
/// 备 注:模板文件路径
/// </summary>
public string? FilePath { get; set; }
/// <summary>
/// 备 注:模板文件名称
/// </summary>
public string? FileName { get; set; }
/// <summary>
/// 备 注:模板文件大小
/// </summary>
public long? FileSize { get; set; }
/// <summary>
/// 备 注:提交时间
/// 默认值:
///</summary>
public DateTime Endtime { get; set; }
/// <summary>
/// 备 注:状态1已创建未发布2进行中已发布3已完成4已关闭
/// 默认值:
///</summary>
public int? Status { get; set; }
/// <summary>
/// 提交人员数据信息
/// </summary>
public List<DataConllectionSubFileDetailResult> dataConllectionSubFileDetailResults { get; set; }
}
public class DataConllectionSubFileDetailResult
{
public long DataConllectionId { get; set; }
/// <summary>
/// 提交人
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 已提交文件id空则未提交
/// </summary>
public long? SubFileId { get; set; }
/// <summary>
/// 备 注:提交文件路径
/// </summary>
public string? SubFilePath { get; set; }
/// <summary>
/// 备 注:提交文件名称
/// </summary>
public string? SubFileName { get; set; }
/// <summary>
/// 备 注:提交文件大小
/// </summary>
public long? SubFileSize { get; set; }
/// <summary>
/// 备 注:提交时间
/// </summary>
public DateTime? SubAddtime { get; set; }
}
}