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 FollowUpKeyNoteStudentRequest { /// /// 备 注:跟课id /// public long FollowId { get; set; } /// /// 备 注:学生id /// public long StudentUserId { get; set; } /// /// 备 注:处理状态 默认0未处理 1忽略 2发起谈话 /// public int HandleState { get; set; } = 0; } }