1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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; }
    }
}