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