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.

31 lines
826 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.Entity.UpLoad
{
[SugarTable("sys_user")]
public class SysUser
{
/// <summary>
/// 主键标识
/// </summary>
[SugarColumn(ColumnName = "user_id", IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(ColumnName = "login_name")]
public string loginName { get; set; }
[SugarColumn(ColumnName = "user_name")]
public string userName { get; set; }
[SugarColumn(ColumnName = "client_key")]
public string clientKey { get; set; }
[SugarColumn(ColumnName = "client_role")]
public string clientRole { get; set; }
}
}