namespace iWareLog.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("LOGOperation")] public partial class LOGOperation { [Key] public int wbdatalogid { get; set; } public int? wblogtype { get; set; } public DateTime? wblogdate { get; set; } [StringLength(50)] public string wblogaccount { get; set; } [StringLength(50)] public string wbusername { get; set; } [StringLength(50)] public string wbuseripaddress { get; set; } [StringLength(255)] public string wblogtxt { get; set; } [StringLength(50)] public string log_backup1 { get; set; } [StringLength(50)] public string log_backup2 { get; set; } [StringLength(50)] public string log_backup3 { get; set; } } }