20 lines
399 B
C#
20 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Model.IOT.Request
|
|
{
|
|
/// <summary>
|
|
/// 学生列表
|
|
/// </summary>
|
|
public class IOT_StudentListParam : IOT_SchoolParam
|
|
{
|
|
/// <summary>
|
|
/// 学校Code
|
|
/// </summary>
|
|
//public string SchoolCode { get; set; }
|
|
}
|
|
}
|