20 lines
407 B
C#
20 lines
407 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Model.Ai.Request
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 心率报告请求
|
|||
|
/// </summary>
|
|||
|
public class HeartRateReportRequest : Ai_Request
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 课堂记录Id
|
|||
|
/// </summary>
|
|||
|
public int ClassRoomRecordId { get; set; }
|
|||
|
}
|
|||
|
}
|