Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/ManagerData/ManagerDataCollectionReques...

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