啊鑫
2024-07-11 afbf8700d137710713db61955879d0f5acb73738
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
41
using CSFramework.DB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CSFramework.DBTester
{
 
 
    [TableInfoAttribute("sys_Log")]
    public class sys_Log
    {
        //标识该字段为主键
        [KeyField]
        public string GUID32 { get; set; }
 
        //该字段为自增字段,忽略
        [IgnoreField]
        public int isid { get; set; }
 
        public string DocNo { get; set; }
 
        public string LogUser { get; set; }
 
        public int OPType { get; set; }
 
        public DateTime LogDate { get; set; }
 
        public bool IsProcess { get; set; }
 
        //忽略的字段
        [IgnoreField]
        public string IgnoreField1 { get; set; }
 
        //忽略的字段
        [IgnoreField]
        public string IgnoreField2 { get; set; }
    }
}