using System;
using System.Collections.Generic;
namespace StopShopping.EF.Models;
///
/// 管理员
///
public partial class Administrator
{
///
/// 主键
///
public int Id { get; set; }
///
/// 登录账号
///
public string Account { get; set; } = null!;
///
/// 昵称
///
public string NickName { get; set; } = null!;
///
/// 登录密码(已加密)
///
public string Password { get; set; } = null!;
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 最后登录时间
///
public DateTime LastLoginTime { get; set; }
}