21 lines
464 B
C#
21 lines
464 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 EvaluationSumRequest
|
|
{
|
|
/// <summary>
|
|
/// 总结报告id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 评论内容
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
}
|
|
}
|