39 lines
935 B
C#
39 lines
935 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using LearningOfficer.OA.Common.Dtos.OA.WorkProcess.Summarize;
|
||
|
||
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
|
||
{
|
||
public class SummarizeDayRequest
|
||
{
|
||
/// <summary>
|
||
/// 备 注:工作总结日期
|
||
/// 默认值:
|
||
///</summary>
|
||
public DateTime WorkDate { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:问题反馈
|
||
/// 默认值:
|
||
///</summary>
|
||
public string QuestContent { get; set; } = null!;
|
||
|
||
/// <summary>
|
||
/// 备 注:下次工作内容
|
||
/// 默认值:
|
||
///</summary>
|
||
public string NextTimeContent { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:明日计划-文件id集合,多个英文逗号隔开
|
||
/// </summary>
|
||
public string? FileId { get; set; }
|
||
|
||
|
||
}
|
||
}
|