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";
|
|
|
|
|
|
|
|
|
}
|
}
|