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