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 DataConllectionListResult
{
public long Id { get; set; }
///
/// 备 注:收集主题
/// 默认值:
///
public string Title { get; set; } = null!;
///
/// 备 注:需要提交时间
/// 默认值:
///
public DateTime Endtime { get; set; }
///
/// 已提交文件id(空则未提交)
///
public long? FileId { get; set; }
///
/// 备 注:状态:1:已创建(未发布);2:进行中(已发布);3:已完成;4:已关闭
/// 默认值:
///
public int Status { get; set; }
}
}