26 lines
637 B
C#
26 lines
637 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 FollowTeachersituationResult
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 跟课id
|
|
/// </summary>
|
|
public long FollowId { get; set; }
|
|
/// <summary>
|
|
/// 落地老师-问题类型,字典表
|
|
/// </summary>
|
|
public long ParamId { get; set; }
|
|
/// <summary>
|
|
/// 问题描述
|
|
/// </summary>
|
|
public string ParamName { get; set; }
|
|
}
|
|
}
|