32 lines
850 B
C#
32 lines
850 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 FollowUpTeachersituationRequest
|
|
{
|
|
/// <summary>
|
|
/// 备 注:处理落地老师的问题Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 备 注:跟课id
|
|
/// </summary>
|
|
public long FollowId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:落地老师-问题类型,字典表
|
|
/// 默认值:
|
|
/// </summary>
|
|
public long ParamId { get; set; }
|
|
/// <summary>
|
|
/// 备 注:处理状态 默认0未处理 1忽略 2发起谈话
|
|
/// 默认值:
|
|
/// </summary>
|
|
public int HandleState { get; set; }
|
|
}
|
|
}
|