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 FollowAbsenceUserResult { public long Id { get; set; } /// /// 跟课id /// public long FollowId { get; set; } /// /// 用户id /// public long UserId { get; set; } /// /// 用户姓名 /// public string UserName { get; set; } } }