YD_SmartSports.Api/VOL.Model/Ai/Request/StatusLevelExamRequest.cs

27 lines
504 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Model.Ai
{
/// <summary>
/// 学生考级测评等级
/// </summary>
public class StatusLevelExamRequest : Ai_Request
{
/// <summary>
/// 专项Id
/// </summary>
public int SpecialId { get; set; }
/// <summary>
/// 学号
/// </summary>
public string StudentNo { get; set; }
}
}