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 { /// /// 问题id /// public long questionId { get; set; } /// /// 问题个数 /// public int num { get; set; } /// /// 记录时间 /// public DateTime AddTime { get; set; } } }