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 FollowAbsenceUserRequest { /// /// 双师课堂记录表id /// public long FollowId { get; set; } /// /// 用户id /// public long UserId { get; set; } /// /// 处理状态 默认0 0未处理 1忽略 2发起谈话 /// public long HandleState { get; set; } } }