This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using SqlSugar;
namespace Aucma.Scada.Model.domain
{
/// <summary>
/// 用户信息
///</summary>
[SugarTable("SYS_USER")]
public class SysUserInfo
/// 用户Id,自增主键
[SugarColumn(ColumnName = "USER_ID", IsPrimaryKey = true, IsIdentity = true)]
public int userId { get; set; }
/// 用户名称
[SugarColumn(ColumnName = "USER_NAME")]
public string userName { get; set; }
/// 用户密码
[SugarColumn(ColumnName = "PASSWORD")]
public string password { get; set; }
}