using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace com.steering.pss.ydm.entity { /// /// 数据库表CORE_LOAD_IPMONITOR所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-23SFAF86 时间:2022-11-03 /// /// /// 数据库表IPMONITOR所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-23SFAF86 时间:2022-11-03 /// public class CoreAppLoginrecordEntity { /// /// 用户账号 /// private string userid = ""; /// /// 用户姓名 /// private string username = ""; /// /// 用户IP /// private string ip = ""; /// /// 登录时间 /// private string ldatetime = ""; /// /// 用户账号 /// [Description("用户账号")] [Nullable(false)] [DataLength(20)] public string Userid { get { return userid; } set { userid = value; } } /// /// 用户姓名 /// [Description("用户姓名")] [Nullable(false)] [DataLength(20)] public string Username { get { return username; } set { username = value; } } /// /// 用户IP /// [Description("用户IP")] [Nullable(false)] [DataLength(20)] public string Ip { get { return ip; } set { ip = value; } } /// /// 无注释 /// [Description("登录时间")] [Nullable(false)] [DataLength(20)] public string Ldatetime { get { return ldatetime; } set { ldatetime = value; } } [Description("备注")] [Nullable(false)] [DataLength(20)] public string Remark { get; set; } } }