using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MaterialTraceability.Entity.DAO { /// /// 用户信息 /// [SugarTable("Sys_UserInfo")] public class SysUserInfo { /// /// /// [SugarColumn(ColumnName="objId" ,IsPrimaryKey = true ,IsIdentity = true )] public int objId { get; set; } /// /// /// [SugarColumn(ColumnName= "CardID")] public int CardID { get; set; } /// /// /// [SugarColumn(ColumnName= "JobID")] public int JobID { get; set; } /// /// /// [SugarColumn(ColumnName= "Name")] public string Name { get; set; } /// /// /// [SugarColumn(ColumnName= "Level")] public string Level { get; set; } /// /// /// [SugarColumn(ColumnName = "PWD")] public string PWD { get; set; } } }