You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
567 B

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; }
}
}