22 lines
491 B
C#
22 lines
491 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 ReadSummarizRequest
|
|
{
|
|
/// <summary>
|
|
/// 总结id
|
|
/// </summary>
|
|
public long SumId { get; set; }
|
|
/// <summary>
|
|
/// 总结类型 1日报 2周报 3月报
|
|
/// </summary>
|
|
public int SumType { get; set; }
|
|
|
|
}
|
|
}
|