111
cjs
2025-06-06 03e67373c4c3bef21936ec1f9037f2ebcd434583
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IFrame.Entitys
{
    public static class Constant
    {
        // 集合名称
        // 图片资源表
        public static string tbl_picres = "TN_SYS_RESOURCE_PIC";
        // flash资源表
        public static string tbl_flashres = "TN_SYS_RESOURCE_FLASH";
        // 视频资源表
        public static string tbl_videores = "TN_SYS_RESOURCE_VIDEO";
        // 声音资源表
        public static string tbl_voiceres = "TN_SYS_RESOURCE_VOICE";
        // 字形表
        public static string tbl_fontlibrary = "TN_SYS_FONT_LIBRARY";
        // 字库表
        public static string tbl_font = "TN_SYS_FONT";
        //分类表
        public static string tbl_classify = "TN_SYS_CLASSIFY";
        //书法家表
        public static string tbl_calligrapher = "TN_SYS_CALLIGRAPHER";
        //书法知识表
        public static string tbl_knowledge = "TN_SYS_HANDWRITING";
        // 碑帖欣赏表
        public static string tbl_rubbingenjoy = "TN_SYS_RUBBING";
        // 碑帖欣赏图片表
        public static string tbl_rubbingenjoyimg = "TN_SYS_RUBBING_IMG";
    //集字作品
        public static string tbl_setofword = "TN_SYS_SET_OFWORD";
 
        // 字导入Excel sheet名
        public static string xls_sheet_word = "ExportInWord";
 
        /// <summary>
        /// 字形特征表
        /// </summary>
        public static string tbl_fontfeatrues = "TN_SYS_FEATRUE";
        // 字体表
        public static string tbl_fontfamily = "TN_SYS_FONT_FAMILY";
        //地区表
        public static string tbl_region = "TN_SYS_REGION";
 
        //客户表
        public static string tbl_customer = "TN_SYS_CUSTOMER";
 
        // 字典编码
        /// <summary>
        /// 笔法位置
        /// </summary>
        public static string dic_BrushworkPosition = "BrushworkPosition";
 
        /// <summary>
        /// 动画类型
        /// </summary>
        public static string dic_FlashType = "FlashType";
 
        /// <summary>
        /// 视频类型
        /// </summary>
        public static string dic_VideoType = "VideoType";
 
        /// <summary>
        /// 笔法特征
        /// </summary>
        public static string dic_BrushworkCharacteristic = "Stroke characteristics";
 
        /// <summary>
        /// 空间特征
        /// </summary>
        public static string dic_SpatialCharacteristics = "Spatial characteristics";
 
        /// <summary>
        /// 碑帖名称
        /// </summary>
        public static string dic_BtName = "btname";
 
        /// <summary>
        /// 碑帖欣赏分类
        /// </summary>
        public static string dic_BtEnjoyType = "RubbingsEnjoyClassType";
 
        /// <summary>
        /// 朝代名称
        /// </summary>
        public static string dic_Dynasty = "Dynasty";
 
        /// <summary>
        /// 用笔
        /// </summary>
        public static string dic_UsePen = "wield the pen";
 
        /// <summary>
        /// 结构特征
        /// </summary>
        public static string dic_FontFeature = "fontFeature";
 
    /// <summary>
        /// 作品背景
        /// </summary>
        public static string dic_WorkBackground = "workBackground";
        /// <summary>
        /// 作品格式
        /// </summary>
        public static string dic_WorkFormat = "workFormat";
 
        // 字属性
        /// <summary>
        /// 黑底白字
        /// </summary>
        public static string feature_HDBZ = "黑底白字";
 
        /// <summary>
        /// 源碑帖
        /// </summary>
        public static string feature_YBT = "源碑帖";
 
        /// <summary>
        /// 米底空心字
        /// </summary>
        public static string feature_MDKXZ = "米底空心字";
 
        /// <summary>
        /// 米底字分析图
        /// </summary>
        public static string feature_MDZFXT = "米底字分析图";
 
        /// <summary>
        /// 动画
        /// </summary>
        public static string feature_FLASH = "动画";
 
        /// <summary>
        /// 视频
        /// </summary>
        public static string feature_VIDEO = "视频";
 
        /// <summary>
        /// 笔法位置
        /// </summary>
        public static string feature_BFWZ = "笔法位置";
 
        /// <summary>
        /// 笔法特征
        /// </summary>
        public static string feature_BFTZ = "笔法特征";
 
        /// <summary>
        /// 空间特征
        /// </summary>
        public static string feature_KJTZ = "空间特征";
 
        /// <summary>
        /// 用笔
        /// </summary>
        public static string feature_YB = "用笔";
 
 
        /// <summary>
        /// 视频文件夹
        /// </summary>
        public static string girdFS_VIDEO = "videofiles";
 
        /// <summary>
        /// flash文件夹
        /// </summary>
        public static string girdFS_FLASH = "flashfiles";
 
        /// <summary>
        /// voice文件夹
        /// </summary>
        public static string girdFS_VOICE = "voicefiles";
 
        /// <summary>
        /// 图片文件夹
        /// </summary>
        public static string girdFS_IMG = "imgfiles";
 
 
 
 
 
 
 
 
    }
}