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.
16 lines
568 B
16 lines
568 B
namespace TeacherExt.Models
|
|
{
|
|
public class ListItem
|
|
{
|
|
public string RequestEditStatus { get; set; } = "未提交";
|
|
public string CheckStatus { get; set; } = "未申请";
|
|
public string person_name { get; set; }
|
|
public string sex { get; set; }
|
|
public string nation { get; set; }
|
|
public string nation_name { get; set; }
|
|
public string placeofbirth { get; set; }
|
|
public string org_name { get; set; }
|
|
public int person_id { get; set; }
|
|
public string bureau_name { get; set; }
|
|
}
|
|
} |