1. 添加 一个模型实体(M)
项目 -> Models文件 右键 -> 添加 -> 新建项
实体写相关的属性
public class CurrentUser
{
public int Id { get; set; }
public string Name { get; set; }
public string Account { get; set; }
public string Password { get; set; }
public string Email { get; set; }
public string Role { get; set; }
public DateTime LoginTime { get; set; }
}