qian
12 months ago
3 changed files with 31 additions and 7 deletions
@ -0,0 +1,24 @@ |
|||||
|
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; } |
||||
|
|
||||
|
|
||||
|
} |
||||
|
} |
Loading…
Reference in new issue