22
schangxiang@126.com
2024-12-23 164f2cf0a8d85a2ebd2955f8f322d5f6bb4d3857
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
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; }
    }
}