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

60 lines
1.3 KiB
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.ManagerData
{
/// <summary>
/// 管理数据采集结果
/// </summary>
public class ManagerDataCollectionResult
{
/// <summary>
/// id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 备 注:收集主题
/// 默认值:
///</summary>
public string Title { get; set; } = null!;
/// <summary>
/// 备 注:提交时间
/// 默认值:
///</summary>
public DateTime Endtime { get; set; }
/// <summary>
/// 备 注:添加时间
/// 默认值:
///</summary>
public DateTime Addtime { get; set; }
/// <summary>
/// 备 注:收集对象个数
/// 默认值:
///</summary>
public int? FileCount { get; set; }
/// <summary>
/// 备 注:已提交个数
/// </summary>
public int SubmitCount { get; set; } = 0;
/// <summary>
/// 备 注:状态1已创建未发布2进行中已发布3已完成4已关闭
/// 默认值:
///</summary>
public int Status { get; set; }
}
}