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 FollowTeachersituationResult { public long Id { get; set; } /// /// 跟课id /// public long FollowId { get; set; } /// /// 落地老师-问题类型,字典表 /// public long ParamId { get; set; } /// /// 问题描述 /// public string ParamName { get; set; } } }