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