1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#region
 
using System;
 
#endregion
 
/*===================================================================
 *   程序说明: tb_sys_AdvancedFilterConfig的ORM模型
 *   作者资料: 孙中吕
 *   创建日期: 2021-06-04 09:43:27
 *   最后修改: 2021-06-04 09:43:27
 *
 *   注: 本文件由代码生成器(Code Generator)自动生成。
 *   (此源码文件请放置在 YourProject.Models 模块)
 *   版权所有 Copyright 2006~2021, C/S框架网(www.cscode.net)
 *===================================================================*/
 
namespace CSFrameworkV5.Models.DbEntity
{
    /// <summary>
    ///     ORM模型, 数据表:sys_AdvancedFilterConfig,由ClassGenerator自动生成
    /// </summary>
    public class sys_AdvancedFilterConfig
    {
        #region 所有字段名常量
 
        public const string _isid = "isid";
        public const string _Account = "Account";
        public const string _Name = "Name";
        public const string _BusinessName = "BusinessName";
        public const string _CreateDate = "CreateDate";
        public const string _SQL = "SQL";
        public const string _AllFields = "AllFields";
        public const string _AllSelectedFields = "AllSelectedFields";
 
        #endregion
 
        #region 所有字段属性
 
        public int isid { get; set; }
 
        public string Account { get; set; }
 
        public string Name { get; set; }
 
        public string BusinessName { get; set; }
 
        public DateTime CreateDate { get; set; }
 
        public string SQL { get; set; }
 
        public byte[] AllFields { get; set; }
 
        public byte[] AllSelectedFields { get; set; }
 
        #endregion
    }
}