25 lines
577 B
C#
25 lines
577 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 TeacherBehaviorQuestionNumResult
|
|
{
|
|
/// <summary>
|
|
/// 问题id
|
|
/// </summary>
|
|
public long questionId { get; set; }
|
|
/// <summary>
|
|
/// 问题个数
|
|
/// </summary>
|
|
public int num { get; set; }
|
|
/// <summary>
|
|
/// 记录时间
|
|
/// </summary>
|
|
public DateTime AddTime { get; set; }
|
|
}
|
|
}
|