schangxiang@126.com
2025-05-07 c2fa981fb19aa0fee113dd684f5f14956d58bd93
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace GenerateCode_GEBrilliantFactory.Model
{
    public static class SystemCommonVar
    {
 
 
        public const string c_Id = "Id";
 
        public const string c_creator = "CreatedUserName";
 
        public const string c_createTime = "CreationTime";
 
        public const string c_lastModifier = "UpdatedUserName";
 
        public const string c_ModifyTime = "LastModificationTime";
 
        public const string c_lastModifyTime = "DeletionTime";
 
        public const string c_delFlag = "IsDeleted";
 
        public const string c_DeleterId = "DeleterId";
 
        public const string c_CreateId = "CreatorId";
 
        public const string c_ModifyId = "LastModifierId";
 
        public const string c_ExtraProperties = "ExtraProperties";
 
        public const string c_ConcurrencyStamp = "ConcurrencyStamp";
 
        public const string c_Sort = "Sort";
        public const string c_IsDisabled = "IsDisabled";
        
 
    }
}