65 lines
1.5 KiB
C#
65 lines
1.5 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;
|
|||
|
using VOL.Entity.Enum;
|
|||
|
using System.Runtime;
|
|||
|
|
|||
|
namespace VOL.Model.IOT.Response
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 老师详情
|
|||
|
/// </summary>
|
|||
|
public class IOT_TeacherDetailsModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 老师Id
|
|||
|
/// </summary>
|
|||
|
public int TeacherId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///老师姓名
|
|||
|
/// </summary>
|
|||
|
public string TeacherName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///老师性别[1:男 2:女]
|
|||
|
/// </summary>
|
|||
|
public int Gender { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///老师电话
|
|||
|
/// </summary>
|
|||
|
public string TeacherPhoneNo { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 授课班级
|
|||
|
/// </summary>
|
|||
|
public int TotalClassNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 授课人数
|
|||
|
/// </summary>
|
|||
|
public int TotalStudentNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 授课时长
|
|||
|
/// </summary>
|
|||
|
public double TotalTrainTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 授课次数
|
|||
|
/// </summary>
|
|||
|
public int TotalTrainNumber { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 状态[1:在职 2:离职]
|
|||
|
/// </summary>
|
|||
|
public int TeacherState { get; set; }
|
|||
|
}
|
|||
|
}
|