19 lines
417 B
C#
19 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_LoginLog : BaseEntity
|
|
{
|
|
[Key]
|
|
public int pkid { get; set; }
|
|
public int uid { get; set; }
|
|
public int eid { get; set; }
|
|
public DateTime logintime { get; set; }
|
|
public string ip { get; set; }
|
|
|
|
}
|
|
}
|