50 lines
1.1 KiB
C#
50 lines
1.1 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_TeacherListModel
|
|
{
|
|
/// <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 string TeacherPwd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态[1:在职 2:离职]
|
|
/// </summary>
|
|
public int TeacherState { get; set; }
|
|
}
|
|
}
|