26 lines
678 B
C#
26 lines
678 B
C#
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!;
|
||
}
|
||
}
|