using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.EntityModel
{
///
///
///
public class Employee : BaseModel
{
///
/// 登陆名
///
public string Account { get; set; }
///
/// pwd
///
public string Pwd { get; set; }
///
/// 别名
///
public string NickName { get; set; }
}
}