30 lines
814 B
C#
30 lines
814 B
C#
using SqlSugar;
|
|||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 登录实体类型
|
||
|
|
/// </summary>
|
||
|
|
public class SysAdmin
|
||
|
|
{
|
||
|
|
[SugarColumn(IsPrimaryKey = true,IsIgnore =true)]
|
||
|
|
public int LoginId { get; set; }
|
||
|
|
public string LoginName { get; set; }
|
||
|
|
public string LoginPwd { get; set; }
|
||
|
|
public string LoginUid { get; set; }
|
||
|
|
public string LoginLevel { get; set; }
|
||
|
|
public bool SystemLog { get; set; }
|
||
|
|
public bool CpkData { get; set; }
|
||
|
|
public bool HistoryData { get; set; }
|
||
|
|
public bool ParamSet { get; set; }
|
||
|
|
public bool SystemSet { get; set; }
|
||
|
|
public bool UserManage { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|