Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/Summarize/SummarizeWeekRequest.cs

65 lines
1.5 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.WorkProcess.Summarize
{
public class SummarizeWeekRequest
{
/// <summary>
/// 备 注:工作年份
/// 默认值:
///</summary>
public int WorkYear { get; set; }
/// <summary>
/// 备 注:工作月份
/// 默认值:
///</summary>
public int WorkMonth { get; set; }
/// <summary>
/// 备 注:工作周报
/// 默认值:
///</summary>
public int WorkWeek { get; set; }
/// <summary>
/// 备 注:工作总结日期-开始
/// 默认值:
///</summary>
public DateTime BeginDate { get; set; }
/// <summary>
/// 备 注:工作总结日期-结束
/// 默认值:
///</summary>
public DateTime EndDate { get; set; }
/// <summary>
/// 备 注:问题反馈
/// 默认值:
///</summary>
public string QuestContent { get; set; } = null!;
/// <summary>
/// 备 注:下次工作内容
/// 默认值:
///</summary>
public string NextTimeContent { get; set; } = null!;
/// <summary>
/// 备 注:明日计划-文件id集合多个英文逗号隔开
/// </summary>
public string? FileId { get; set; }
}
}