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

26 lines
848 B

using Infrastructure.Application;
using Microsoft.AspNetCore.Mvc.Rendering;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using TeacherExt.Entities;
namespace TeacherExt.Models
{
public class QueryTeacherModel : PagedList<ListItem>
{
public int bureau_id { get; set; } = 302705;
[Display(Name = "姓名")]
public string person_name { get; set; }
[Display(Name = "申请状态")]
public string RequestEditStatus { get; set; }
[Display(Name = "审核状态")]
public string CheckStatus { get; set; }
public List<string> Headers { get; set; } = new List<string>();
public List<SelectListItem> HeaderSelectList { get; set; } = new List<SelectListItem>();
public List<Organization> Organs = new List<Organization>();
}
}