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