jy-plc/Command/Model/EntityModel/Employee.cs

27 lines
567 B
C#

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