namespace iWareSql.DBModel
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("OperateLog")]
|
public partial class OperateLog
|
{
|
public int Id { get; set; }
|
|
public bool? IsDeleted { get; set; }
|
|
[StringLength(2000)]
|
public string Area { get; set; }
|
|
[StringLength(2000)]
|
public string Controller { get; set; }
|
|
[StringLength(2000)]
|
public string Action { get; set; }
|
|
[StringLength(2000)]
|
public string IPAddress { get; set; }
|
|
[StringLength(2000)]
|
public string Description { get; set; }
|
|
public DateTime? LogTime { get; set; }
|
|
[StringLength(2000)]
|
public string LoginName { get; set; }
|
|
public int UserId { get; set; }
|
}
|
}
|