namespace iWare_SCADA_Model
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class sys_log_audit
|
{
|
public int Id { get; set; }
|
|
[StringLength(50)]
|
public string TableName { get; set; }
|
|
[StringLength(50)]
|
public string ColumnName { get; set; }
|
|
public string NewValue { get; set; }
|
|
public string OldValue { get; set; }
|
|
public DateTimeOffset? CreatedTime { get; set; }
|
|
public long UserId { get; set; }
|
|
[StringLength(50)]
|
public string UserName { get; set; }
|
|
public int Operate { get; set; }
|
}
|
}
|