28 lines
723 B
C#
28 lines
723 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
|
|
{
|
|
/// <summary>
|
|
/// 处理重点学生的问题
|
|
/// </summary>
|
|
public class FollowUpKeyNoteStudentRequest
|
|
{
|
|
/// <summary>
|
|
/// 备 注:跟课id
|
|
/// </summary>
|
|
public long FollowId { get; set; }
|
|
/// <summary>
|
|
/// 备 注:学生id
|
|
/// </summary>
|
|
public long StudentUserId { get; set; }
|
|
/// <summary>
|
|
/// 备 注:处理状态 默认0未处理 1忽略 2发起谈话
|
|
/// </summary>
|
|
public int HandleState { get; set; } = 0;
|
|
}
|
|
}
|