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 ManagerDataCollectionRequest { /// /// 备 注:收集主题 /// 默认值: /// public string Title { get; set; } = null!; /// /// 备 注:收集要求 /// 默认值: /// public string Remark { get; set; } = null!; /// /// 备 注:模板文件id(直接手机传则传id,电脑传则为null) /// 默认值: /// public long? FileId { get; set; } /// /// 备 注:提交时间 /// 默认值: /// public DateTime Endtime { get; set; } /// /// 备 注:收集对象,用户集合 /// public List Users { get; set; } } }