You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Scada.Model.domain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户信息
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("SYS_USER")]
|
|
|
|
|
public class SysUserInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户Id,自增主键
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "USER_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int userId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户名称
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "USER_NAME")]
|
|
|
|
|
public string userName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用户密码
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PASSWORD")]
|
|
|
|
|
public string password { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|