26 lines
564 B
C#
26 lines
564 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
|
|
{
|
|
public class TeacherBehaviorFinishRequest
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 观察表id
|
|
/// </summary>
|
|
public long TBId { get; set; }
|
|
/// <summary>
|
|
/// 分析/总结
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|