元数据解读-元素类型ElementType
![image.webp](/download/0100ab7d5847e4fc43b791d2e7dda55d700e.webp)
在二开时,经常需要查询字段的标识信息;
有时候打开BOS查询会比较繁琐;
我们可以通过标准查询接口中的元数据查询接口(QueryBusinessInfo)获取完整元数据后进行解读,然后通过导出到Excel表等方式,进行快捷查询。
本次分享元数据中,元素类型ElementType的枚举值。
```C#
public static string FF_Get_ElementType_Ch(string ElementType)
{
string msgValueCh = "";
switch (ElementType)
{
case "-210": msgValueCh = "组合界面模版"; break;
case "-200": msgValueCh = "过滤条件框模版"; break;
case "-100": msgValueCh = "单据基类模版"; break;
case "1": msgValueCh = "文本"; break;
case "2": msgValueCh = "小数"; break;
case "3": msgValueCh = "整数"; break;
case "4": msgValueCh = "日期"; break;
case "5": msgValueCh = "长日期"; break;
case "6": msgValueCh = "多行文本"; break;
case "7": msgValueCh = "组织"; break;
case "8": msgValueCh = "复选框"; break;
case "9": msgValueCh = "下拉列表"; break;
case "10": msgValueCh = "XML字段"; break;
case "11": msgValueCh = "多语言XML字段"; break;
case "12": msgValueCh = "单据编号"; break;
case "13": msgValueCh = "基础资料"; break;
case "14": msgValueCh = "基础资料属性"; break;
case "15": msgValueCh = "多类别基础资料列表"; break;
case "16": msgValueCh = "多类别基础资料"; break;
case "17": msgValueCh = "创建人"; break;
case "18": msgValueCh = "用户"; break;
case "19": msgValueCh = "批次"; break;
case "20": msgValueCh = "单价"; break;
case "21": msgValueCh = "金额"; break;
case "22": msgValueCh = "数量"; break;
case "23": msgValueCh = "金额数据库加密"; break;
case "24": msgValueCh = "多选基础资料"; break;
case "25": msgValueCh = "单选按钮"; break;
case "26": msgValueCh = "创建日期"; break;
case "27": msgValueCh = "修改人"; break;
case "28": msgValueCh = "修改日期"; break;
case "29": msgValueCh = "多选下拉列表"; break;
case "30": msgValueCh = "单选辅助资料列表"; break;
case "31": msgValueCh = "多选辅助资料列表"; break;
case "32": msgValueCh = "单选按钮组"; break;
case "33": msgValueCh = "分组"; break;
case "34": msgValueCh = "单据头"; break;
case "35": msgValueCh = "单据体"; break;
case "36": msgValueCh = "多语言文本"; break;
case "37": msgValueCh = "状态标记"; break;
case "38": msgValueCh = "子单据头"; break;
case "39": msgValueCh = "代理字段"; break;
case "40": msgValueCh = "单据状态"; break;
case "41": msgValueCh = "拆单数量"; break;
case "42": msgValueCh = "可编辑基础资料"; break;
case "43": msgValueCh = "时间"; break;
case "44": msgValueCh = "单据类型"; break;
case "45": msgValueCh = "大文本"; break;
case "46": msgValueCh = "计量单位"; break;
case "47": msgValueCh = "基本单位数量"; break;
case "48": msgValueCh = "树形单据体"; break;
case "49": msgValueCh = "值集资料列表"; break;
case "50": msgValueCh = "源单类型"; break;
case "51": msgValueCh = "源单编号"; break;
case "52": msgValueCh = "基本计量单位"; break;
case "53": msgValueCh = "公式编辑器"; break;
case "54": msgValueCh = "折扣率"; break;
case "55": msgValueCh = "折扣额"; break;
case "56": msgValueCh = "业务流程"; break;
case "58": msgValueCh = "多选组织列表"; break;
case "60": msgValueCh = "截取函数(PA_FIX)"; break;
case "61": msgValueCh = "四舍五入函数(PA_ROUND)"; break;
case "62": msgValueCh = "合计函数(PA_SUM)"; break;
case "63": msgValueCh = "最大函数(PA_MAX)"; break;
case "64": msgValueCh = "最小函数(PA_MIN)"; break;
case "65": msgValueCh = "当前期间年度(PA_GetCurSalYear)"; break;
case "66": msgValueCh = "当前期(PA_GetCurSalPeriod)"; break;
case "67": msgValueCh = "当前次(PA_GetCurSalTime)"; break;
case "68": msgValueCh = "当前日期(GetDate)"; break;
case "69": msgValueCh = "当前年(GetYear)"; break;
case "70": msgValueCh = "当前月(GetMonth)"; break;
case "71": msgValueCh = "当前日(GetDay)"; break;
case "72": msgValueCh = "日期间隔函数(DateDiff)"; break;
case "73": msgValueCh = "日期加(DateAdd)"; break;
case "74": msgValueCh = "个税计算函数(PA_PtaxCalc_CN)"; break;
case "75": msgValueCh = "年终奖计税函数(PA_PtaxCalc_CN_Year)"; break;
case "76": msgValueCh = "红蓝字"; break;
case "77": msgValueCh = "数据库加密文本"; break;
case "80": msgValueCh = "单分录表体"; break;
case "82": msgValueCh = "颜色"; break;
case "83": msgValueCh = "富文本"; break;
case "84": msgValueCh = "上传文件字段"; break;
case "85": msgValueCh = "富文本内容编辑"; break;
case "88": msgValueCh = "树形子单据体"; break;
case "90": msgValueCh = "层"; break;
case "95": msgValueCh = "产品面板"; break;
case "96": msgValueCh = "搜索菜单面板"; break;
case "97": msgValueCh = "状态跟踪图"; break;
case "98": msgValueCh = "判断是否单位浮动换算"; break;
case "99": msgValueCh = "附件列表"; break;
case "100": msgValueCh = "单据"; break;
case "200": msgValueCh = "过滤条件"; break;
case "201": msgValueCh = "快捷过滤面板"; break;
case "202": msgValueCh = "高级过滤面板"; break;
case "203": msgValueCh = "排序过滤面板"; break;
case "204": msgValueCh = "汇总过滤面板"; break;
case "210": msgValueCh = "组合界面"; break;
case "211": msgValueCh = "参数面板"; break;
case "212": msgValueCh = "插件页签"; break;
case "220": msgValueCh = "系统参数"; break;
case "300": msgValueCh = "流程模型"; break;
case "400": msgValueCh = "基础资料"; break;
case "500": msgValueCh = "动态表单"; break;
case "600": msgValueCh = "套打"; break;
case "666": msgValueCh = "折叠控件"; break;
case "700": msgValueCh = "单据转换流程"; break;
case "710": msgValueCh = "状态追踪"; break;
case "770": msgValueCh = "业务流程"; break;
case "777": msgValueCh = "栅格列表"; break;
case "800": msgValueCh = "维度单据"; break;
case "900": msgValueCh = "账表"; break;
case "901": msgValueCh = "简单汇总账表"; break;
case "902": msgValueCh = "简单明细账表"; break;
case "903": msgValueCh = "简单交叉账表"; break;
case "1000": msgValueCh = "图表字段"; break;
case "1001": msgValueCh = "标签"; break;
case "1002": msgValueCh = "按钮"; break;
case "1003": msgValueCh = "分割线"; break;
case "1004": msgValueCh = "页签"; break;
case "1005": msgValueCh = "页签控件"; break;
case "1006": msgValueCh = "框架"; break;
case "1009": msgValueCh = "树形控件"; break;
case "1011": msgValueCh = "图片字段"; break;
case "1012": msgValueCh = "面板"; break;
case "1013": msgValueCh = "附件面板"; break;
case "1014": msgValueCh = "链接"; break;
case "1015": msgValueCh = "多行标签"; break;
case "1016": msgValueCh = "关联知识面板"; break;
case "1017": msgValueCh = "矩形框"; break;
case "1018": msgValueCh = "Office控件"; break;
case "1019": msgValueCh = "透视表格"; break;
case "1020": msgValueCh = "金额大写控件"; break;
case "1021": msgValueCh = "图片控件"; break;
case "1022": msgValueCh = "滚动相册"; break;
case "1024": msgValueCh = "列表控件"; break;
case "1025": msgValueCh = "布局表格"; break;
case "1026": msgValueCh = "分割容器"; break;
case "1027": msgValueCh = "文件上传"; break;
case "1028": msgValueCh = "工具栏"; break;
case "1029": msgValueCh = "过滤条件表格"; break;
case "1030": msgValueCh = "方案列表"; break;
case "1031": msgValueCh = "分录选择"; break;
case "1032": msgValueCh = "排序设置"; break;
case "1033": msgValueCh = "显示隐藏列"; break;
case "1034": msgValueCh = "分组标题"; break;
case "1035": msgValueCh = "颜色"; break;
case "1036": msgValueCh = "大文本编辑控件"; break;
case "1037": msgValueCh = "导航容器"; break;
case "1038": msgValueCh = "流程图控件"; break;
case "1039": msgValueCh = "向导标题"; break;
case "1040": msgValueCh = "SQL过滤面板"; break;
case "1050": msgValueCh = "快捷过滤面板"; break;
case "1059": msgValueCh = "流式布局(Html)"; break;
case "1060": msgValueCh = "流式布局"; break;
case "1061": msgValueCh = "移动叙事簿"; break;
case "1062": msgValueCh = "进度文本"; break;
case "1063": msgValueCh = "移动代理字段"; break;
case "1064": msgValueCh = "移动代理分录"; break;
case "1065": msgValueCh = "移动分录代理字段"; break;
case "1066": msgValueCh = "移动列表"; break;
case "1067": msgValueCh = "Metro视图控件"; break;
case "1068": msgValueCh = "编辑列表"; break;
case "1070": msgValueCh = "锚点"; break;
case "1080": msgValueCh = "获取单据类型参数"; break;
case "1100": msgValueCh = "批量过滤条件表格"; break;
case "1150": msgValueCh = "音频控件"; break;
case "1200": msgValueCh = "柱状图"; break;
case "1201": msgValueCh = "饼图"; break;
case "1202": msgValueCh = "点线图"; break;
case "1203": msgValueCh = "雷达图"; break;
case "1204": msgValueCh = "地图"; break;
case "1205": msgValueCh = "日历"; break;
case "1206": msgValueCh = "条形图"; break;
case "1207": msgValueCh = "滚动选择器"; break;
case "1208": msgValueCh = "时间"; break;
case "1209": msgValueCh = "滚动日期控件"; break;
case "1210": msgValueCh = "附件"; break;
case "1211": msgValueCh = "附件字段"; break;
case "1212": msgValueCh = "扩展列表"; break;
case "1213": msgValueCh = "移动表格"; break;
case "1214": msgValueCh = "过滤面板"; break;
case "1215": msgValueCh = "基础资料(过滤)"; break;
case "1216": msgValueCh = "表格字段"; break;
case "1217": msgValueCh = "查询(报表)"; break;
case "1218": msgValueCh = "柱状图"; break;
case "1219": msgValueCh = "条形图"; break;
case "1220": msgValueCh = "点线图"; break;
case "1221": msgValueCh = "饼图"; break;
case "1222": msgValueCh = "雷达图"; break;
case "1223": msgValueCh = "底部菜单"; break;
case "1224": msgValueCh = "图片轮播"; break;
case "1225": msgValueCh = "搜索框"; break;
case "1226": msgValueCh = "语音播放"; break;
case "1227": msgValueCh = "弹窗菜单"; break;
case "1230": msgValueCh = "导航栏"; break;
case "1231": msgValueCh = "导航栏元素"; break;
case "1241": msgValueCh = "数值加减"; break;
case "1242": msgValueCh = "弹性布局"; break;
case "1250": msgValueCh = "轻分析"; break;
case "1260": msgValueCh = "单据附件"; break;
case "1300": msgValueCh = "监控对象"; break;
case "1400": msgValueCh = "移动业务"; break;
case "1600": msgValueCh = "万能报表"; break;
case "1800": msgValueCh = "组合字段"; break;
case "2000": msgValueCh = "主菜单"; break;
case "2001": msgValueCh = "菜单工具栏"; break;
case "2002": msgValueCh = "右键菜单"; break;
case "2003": msgValueCh = "右键菜单"; break;
case "2004": msgValueCh = "分隔符"; break;
case "2005": msgValueCh = "按钮"; break;
case "2006": msgValueCh = "复选框"; break;
case "2007": msgValueCh = "下拉框"; break;
case "2008": msgValueCh = "下拉按钮"; break;
case "2009": msgValueCh = "子下拉按钮"; break;
case "2010": msgValueCh = "文本框"; break;
case "2011": msgValueCh = "私有下拉列表"; break;
case "2015": msgValueCh = "子菜单"; break;
case "2016": msgValueCh = "子分类"; break;
case "2017": msgValueCh = "向导步骤"; break;
case "2018": msgValueCh = "下拉按钮"; break;
case "2100": msgValueCh = "单据"; break;
case "2200": msgValueCh = "日志单据"; break;
case "3000": msgValueCh = "流程版本"; break;
case "3001": msgValueCh = "连线"; break;
case "3100": msgValueCh = "开始"; break;
case "3110": msgValueCh = "开始节点"; break;
case "3111": msgValueCh = "结束节点"; break;
case "3112": msgValueCh = "审批节点"; break;
case "3113": msgValueCh = "终审节点"; break;
case "3114": msgValueCh = "消息节点"; break;
case "3115": msgValueCh = "人工服务"; break;
case "3116": msgValueCh = "自动服务"; break;
case "3124": msgValueCh = "服务"; break;
case "3125": msgValueCh = "服务"; break;
case "3200": msgValueCh = "节点"; break;
case "3201": msgValueCh = "审批"; break;
case "3202": msgValueCh = "消息"; break;
case "3203": msgValueCh = "脚本"; break;
case "3204": msgValueCh = "流程图"; break;
case "3205": msgValueCh = "动态文本"; break;
case "3206": msgValueCh = "自动单据转换"; break;
case "3207": msgValueCh = "自动单据提交"; break;
case "3210": msgValueCh = "共享服务"; break;
case "3211": msgValueCh = "影像对接"; break;
case "3220": msgValueCh = "共享服务"; break;
case "3221": msgValueCh = "影像对接"; break;
case "5000": msgValueCh = "转换路径"; break;
case "5001": msgValueCh = "字段选项"; break;
case "6000": msgValueCh = "转换规则"; break;
case "6001": msgValueCh = "金额对象"; break;
case "6002": msgValueCh = "数据表格"; break;
case "6003": msgValueCh = "动态列表"; break;
case "6004": msgValueCh = "布局列"; break;
case "6005": msgValueCh = "布局行"; break;
case "6006": msgValueCh = "布局单元格"; break;
case "6007": msgValueCh = "数据列"; break;
case "6008": msgValueCh = "普通行"; break;
case "6009": msgValueCh = "明细行"; break;
case "6010": msgValueCh = "数据单元格"; break;
case "6011": msgValueCh = "动态单元"; break;
case "6012": msgValueCh = "简单数据表格"; break;
case "6013": msgValueCh = "条形码"; break;
case "6014": msgValueCh = "动态表格"; break;
case "6015": msgValueCh = "二维码"; break;
case "7000": msgValueCh = "单据"; break;
case "7001": msgValueCh = "抽象转换策略"; break;
case "7002": msgValueCh = "字段映射关系"; break;
case "7003": msgValueCh = "插件策略"; break;
case "7004": msgValueCh = "选单条件策略"; break;
case "7005": msgValueCh = "分组策略"; break;
case "7006": msgValueCh = "表单服务策略"; break;
case "7007": msgValueCh = "基础资料"; break;
case "7008": msgValueCh = "关联主单据体"; break;
case "7009": msgValueCh = "单据类型映射"; break;
case "7010": msgValueCh = "排序策略"; break;
case "7101": msgValueCh = "状态节点"; break;
case "7102": msgValueCh = "状态连接"; break;
case "7199": msgValueCh = "配置状态追踪"; break;
case "7700": msgValueCh = "节点"; break;
case "7701": msgValueCh = "单据"; break;
case "7702": msgValueCh = "子流程"; break;
case "7703": msgValueCh = "连线"; break;
case "8000": msgValueCh = "Acct"; break;
case "8100": msgValueCh = "Max"; break;
case "8101": msgValueCh = "Min"; break;
case "8102": msgValueCh = "Sum"; break;
case "8103": msgValueCh = "Count"; break;
case "8104": msgValueCh = "Average"; break;
case "8105": msgValueCh = "Date"; break;
case "8106": msgValueCh = "Now"; break;
case "8107": msgValueCh = "RptPage"; break;
case "8108": msgValueCh = "RptInfo"; break;
case "8109": msgValueCh = "RptDate"; break;
case "8110": msgValueCh = "AcctItem"; break;
case "8111": msgValueCh = "AcctCash"; break;
case "8112": msgValueCh = "REF"; break;
case "8114": msgValueCh = "CR_AcctItem"; break;
case "8115": msgValueCh = "ElimData"; break;
case "8116": msgValueCh = "AdjustData"; break;
case "8117": msgValueCh = "ElimReport"; break;
case "8118": msgValueCh = "ACCTITEMHZS"; break;
case "8119": msgValueCh = "ACCTITEMHBS"; break;
case "8121": msgValueCh = "CR_DynamicItem"; break;
case "8122": msgValueCh = "DynamicItem"; break;
case "8123": msgValueCh = "AMBItem"; break;
case "8124": msgValueCh = "AMBDynamicItem"; break;
case "8125": msgValueCh = "CHSF"; break;
case "8127": msgValueCh = "Bom"; break;
case "10010": msgValueCh = "组织架构图"; break;
case "11980": msgValueCh = "汇总函数"; break;
case "11996": msgValueCh = "日历"; break;
case "12064": msgValueCh = "平均值函数"; break;
case "12066": msgValueCh = "计数函数"; break;
case "12068": msgValueCh = "当前用户"; break;
case "12078": msgValueCh = "当前组织"; break;
case "12088": msgValueCh = "是否多组织"; break;
case "12097": msgValueCh = "是否已关联"; break;
case "12098": msgValueCh = "服务端类型"; break;
case "12107": msgValueCh = "是否关联生成"; break;
case "12108": msgValueCh = "获取系统参数"; break;
case "12838": msgValueCh = "最大值函数"; break;
case "12840": msgValueCh = "最小值函数"; break;
case "12841": msgValueCh = "获取单据类型参数"; break;
case "15393": msgValueCh = "隐藏式说明按钮"; break;
case "24438": msgValueCh = "进度条"; break;
case "42981": msgValueCh = "获取GUID"; break;
case "60001": msgValueCh = "金额对象"; break;
case "60002": msgValueCh = "字段关系映射"; break;
case "60003": msgValueCh = "附件策略"; break;
case "60014": msgValueCh = "附件(文件服务器)"; break;
case "60015": msgValueCh = "图片(文件服务器)"; break;
case "60502": msgValueCh = "子单据体"; break;
case "60520": msgValueCh = "维度组"; break;
case "60523": msgValueCh = "维度关联字段"; break;
case "60526": msgValueCh = "状态过滤"; break;
case "60527": msgValueCh = "税组合"; break;
case "60528": msgValueCh = "税务明细单据体"; break;
case "60529": msgValueCh = "附件数"; break;
case "60530": msgValueCh = "甘特图单据体"; break;
case "60531": msgValueCh = "序列号子单据体"; break;
case "60532": msgValueCh = "跨组织业务类型"; break;
case "80132": msgValueCh = "汇总过滤设置"; break;
case "80227": msgValueCh = "是否存在流程实例"; break;
case "80228": msgValueCh = "是否存在未完成的流程实例"; break;
case "80230": msgValueCh = "当前操作状态"; break;
case "80231": msgValueCh = "获取中文首字母"; break;
case "80236": msgValueCh = "印章"; break;
case "80238": msgValueCh = "Dev报表预览面板"; break;
case "80270": msgValueCh = "获取单位换算关系类型"; break;
case "81268": msgValueCh = "串口控件"; break;
case "81269": msgValueCh = "自定义控件"; break;
case "82469": msgValueCh = "打印次数"; break;
case "82470": msgValueCh = "SQLScript"; break;
case "82472": msgValueCh = "打印时间"; break;
case "82473": msgValueCh = "单据体图片字段(文件服务器)"; break;
case "82474": msgValueCh = "状态切换工具栏"; break;
case "82475": msgValueCh = "列分页"; break;
case "82476": msgValueCh = "辅助属性栏"; break;
case "82477": msgValueCh = "双面板"; break;
case "82478": msgValueCh = "图表"; break;
case "82479": msgValueCh = "电子签章"; break;
case "82480": msgValueCh = "是否正在计划运算"; break;
default:
msgValueCh = "未知";
break;
}
return msgValueCh;
}
```
元数据解读-元素类型ElementType
![image.webp](/download/0100ab7d5847e4fc43b791d2e7dda55d700e.webp)在二开时,经常需要查询字段的标识信息;有时候打开BOS查询会比较繁...
点击下载文档
上一篇:如何代码创建临时表?下一篇:一种跨版本Debug的方法
本文2024-09-16 18:31:36发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-22716.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章