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 { /// /// 主键标识 /// [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; } } }