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"; /// /// 字形特征表 /// 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"; // 字典编码 /// /// 笔法位置 /// public static string dic_BrushworkPosition = "BrushworkPosition"; /// /// 动画类型 /// public static string dic_FlashType = "FlashType"; /// /// 视频类型 /// public static string dic_VideoType = "VideoType"; /// /// 笔法特征 /// public static string dic_BrushworkCharacteristic = "Stroke characteristics"; /// /// 空间特征 /// public static string dic_SpatialCharacteristics = "Spatial characteristics"; /// /// 碑帖名称 /// public static string dic_BtName = "btname"; /// /// 碑帖欣赏分类 /// public static string dic_BtEnjoyType = "RubbingsEnjoyClassType"; /// /// 朝代名称 /// public static string dic_Dynasty = "Dynasty"; /// /// 用笔 /// public static string dic_UsePen = "wield the pen"; /// /// 结构特征 /// public static string dic_FontFeature = "fontFeature"; /// /// 作品背景 /// public static string dic_WorkBackground = "workBackground"; /// /// 作品格式 /// public static string dic_WorkFormat = "workFormat"; // 字属性 /// /// 黑底白字 /// public static string feature_HDBZ = "黑底白字"; /// /// 源碑帖 /// public static string feature_YBT = "源碑帖"; /// /// 米底空心字 /// public static string feature_MDKXZ = "米底空心字"; /// /// 米底字分析图 /// public static string feature_MDZFXT = "米底字分析图"; /// /// 动画 /// public static string feature_FLASH = "动画"; /// /// 视频 /// public static string feature_VIDEO = "视频"; /// /// 笔法位置 /// public static string feature_BFWZ = "笔法位置"; /// /// 笔法特征 /// public static string feature_BFTZ = "笔法特征"; /// /// 空间特征 /// public static string feature_KJTZ = "空间特征"; /// /// 用笔 /// public static string feature_YB = "用笔"; /// /// 视频文件夹 /// public static string girdFS_VIDEO = "videofiles"; /// /// flash文件夹 /// public static string girdFS_FLASH = "flashfiles"; /// /// voice文件夹 /// public static string girdFS_VOICE = "voicefiles"; /// /// 图片文件夹 /// public static string girdFS_IMG = "imgfiles"; } }