using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.AppBoxEntity { [Table("LoginTable")] public class LoginTable { [Key] public int ID { get; set; } [StringLength(50)] // ip地址 public string IPAdddress { get; set; } // 登录时间 public DateTime LoginTime { get; set; } // 登录ID public int UserID { get; set; } // 登录名 public String UserName { get; set; } } }