17 lines
346 B
C#
17 lines
346 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 TaskTeacherBehaviorResult
|
|
{
|
|
/// <summary>
|
|
/// 观察记录id
|
|
/// </summary>
|
|
public long TBId { get; set; }
|
|
}
|
|
}
|