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

27 lines
567 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
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; }
}
}