You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/labs/Teacher/TeacherExt/Models/QueryTeacherModel.cs

21 lines
640 B

using Infrastructure.Application;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using TeacherExt.Entities;
namespace TeacherExt.Models
{
public class QueryTeacherModel: PagedList<EditTeacherModel>
{
[Display(Name="姓名")]
public string RealName { get; set; }
[Display(Name = "申请状态")]
public string RequestEditStatus { get; set; }
[Display(Name = "审核状态")]
public string CheckStatus { get; set; }
public Guid? OrganId { get; set; }
public List<Organ> Organs { get; set; } = new List<Organ>();
}
}