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

26 lines
678 B
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 CreatSummarizPlanRequest
{
/// <summary>
/// 总结id
/// </summary>
public long SumId { get; set; }
/// <summary>
/// 报告类型 1日报2周报3月报
/// </summary>
public int SumTypeEnum { get; set; } = 1;
/// <summary>
/// 备 注:下次工作内容
/// 默认值:
///</summary>
public string NextTimeContent { get; set; } = null!;
}
}