61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
![]() |
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Model.IOT.Response
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 班级列表
|
|||
|
/// </summary>
|
|||
|
public class IOT_ClassListModel: SemesterDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///年级Id
|
|||
|
/// </summary>
|
|||
|
public int GradeId { get; set; }
|
|||
|
/// <summary>
|
|||
|
///年级名称
|
|||
|
/// </summary>
|
|||
|
public string GradeName { get; set; }
|
|||
|
/// <summary>
|
|||
|
///班级Id
|
|||
|
/// </summary>
|
|||
|
public int ClassId { get; set; }
|
|||
|
/// <summary>
|
|||
|
///班级名称
|
|||
|
/// </summary>
|
|||
|
public string ClassName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 教师集合
|
|||
|
/// </summary>
|
|||
|
public List<IOT_TeacherModel> Teachers { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 老师信息
|
|||
|
/// </summary>
|
|||
|
public class IOT_TeacherModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///教师Id
|
|||
|
/// </summary>
|
|||
|
public int? TeacherId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///教师姓名
|
|||
|
/// </summary>
|
|||
|
public string TeacherName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///老师电话
|
|||
|
/// </summary>
|
|||
|
public string TeacherPhoneNo { get; set; }
|
|||
|
}
|
|||
|
}
|