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

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