dict.ts 18.5 KB
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
export default {
  protocol_template_type: {
    type: '协议模板类型',
  },
  tcp_access_auth_type: {
    type: 'TCP鉴权方式',
    dataCarrying: '数据携带',
    registrationPackage: '注册包',
  },
  streaming_media_type: {
    type: '流媒体平台类型',
    hikvisionIscPlatform: '海康ISC平台',
    fluoritePlatform: '萤石平台',
  },
  category_field: {
    type: '产品品类领域',
    environmentalPerception: '环境感知',
    energyManagement: '能源管理',
    intelligentPark: '智能园区',
    intelligentAgriculture: '智能农业',
    edgeComputing: '边缘计算',
    intelligentIndustry: '智能工业',
    intelligentRobot: '智能机器人',
    intelligentCar: '智能汽车',
    smartCity: '智慧城市',
    smartLife: '智能生活',
  },
  originator_types: {
    type: '实体类型',
    ruleNodes: '规则节点',
    ruleChain: '规则链',
    instrumentPanel: '仪表板',
    user: '用户',
    customer: '客户',
    tenant: '租户',
    entityView: '实体视图',
    assets: '资产',
    equipment: '设备',
  },
  message_types_filter: {
    type: '消息类型',
  },
  register_data_format: {
    type: '寄存器数据格式',
    bitPosition: '位',
    sixteenBitUnsigned: '16位无符号',
    sixteenBitSigned: '16位有符号',
  },
  script_message_type: {
    type: '消息类型',
  },
  notice_type: {
    type: '通知类型',
    meeting: '会议',
    notice: '公告',
  },
  severity_type: {
    type: '告警级别',
    uncertain: '不确定',
    warning: '警告',
    minor: '次要',
    major: '重要',
    critical: '紧急',
  },
  interface_type: {
    type: '接口类型',
    systemDefault: '系统默认',
    custom: '自定义',
  },
  disabled_platform_admin_auth: {
    type: '平台管理员禁用的权限',
    largeScreenDesigner: '大屏设计器',
    dictionaryManagement: '字典管理',
    accountManagement: '账号管理',
    roleManagement: '角色管理',
    menuManagement: '菜单管理',
    scheduledTasks: '定时任务',
  },
  disabled_customer_auth: {
    type: '客户禁用的权限',
    accountManagement: '账号管理',
    roleManagement: '角色管理',
    templateConfigurationDesign: '模版组态设计',
    templateConfigurationDeletion: '模版组态删除',
    templateConfigurationAddition: '模版组态新增',
    templateConfigurationEdit: '模版组态编辑',
    productList: '产品',
    publicInterfaceUpdate: '公共接口修改',
    publicInterfacePublish: '公共接口发布',
    publicInterfaceDelete: '公共接口删除',
    publicInterfaceUnpublish: '公共接口取消发布',
    publicInterfaceManagement: '公共接口管理',
    publicInterfaceAddition: '公共接口新增',
    kanbanManagementDetails: '看板管理详情',
    scheduledTasks: '定时任务',
    feedbackOnOpinions: '意见反馈',
    logManagement: '日志管理',
    dictionaryManagement: '字典管理',
    menuManagement: '菜单管理',
    organizationalManagement: '组织管理',
    platformCustomization: '平台定制',
    reportExportDeletion: '报表导出删除',
    reportConfiguration: '报表配置',
    videoConfigurationDeletion: '视频配置删除',
    videoAddition: '新增视频',
    videoConfigurationEdit: '视频配置编辑',
    largeScreenDesignerUnpublished: '大屏设计器未发布',
    equipmentListPublic: '设备列表公开',
    equipmentImport: '设备导入',
    equipmentListDeletion: '设备列表删除',
    equipmentListEdit: '设备列表编辑',
    equipmentListAddition: '设备列表新增',
    kanbanManagementSharing: '看板管理分享',
    configurationCenterSharing: '组态中心分享',
    largeScreenDesignerSharing: '大屏设计器分享',
    largeScreenDesignerDesign: '大屏设计器设计',
    largeScreenDesignerPublish: '大屏设计器发布',
    largeScreenDesignerDeletion: '大屏设计器删除',
    largeScreenDesignerAddition: '大屏设计器新增',
    largeScreenDesignerEdit: '大屏设计器编辑',
    configurationCenterDesign: '组态中心设计',
    configurationCenterDeletion: '组态中心删除',
    configurationCenterEdit: '组态中心编辑',
    configurationCenterAddition: '组态中心新增',
    kanbanManagementAddition: '看板管理/新增看板',
    kanbanDeletion: '删除看板',
    kanbanUpdate: '编辑看板',
    ruleEngineView: '规则引擎',
    scriptManagementView: '脚本管理',
    alarmProfileView: '告警联系人',
    alarmTemplateView: '告警配置',
    streamingProfileView: '流媒体配置',
    taskManagementView: '任务管理',
    messageTemplateView: '消息模版',
    messageConfigView: '消息配置',
    noticeManagementView: '通知管理',
    otaUpgradeView: 'OTA升级',
    systemManagementView: '系统管理',
  },
  interface_Type: {
    type: '接口类型',
    custom: '自定义',
    systemDefault: '系统默认',
  },
  data_validate: {
    type: 'CRC数据校验',
    crc32High: 'CRC32,高字节在前',
    crc32Lower: 'CRC32,低字节在前',
    andTotalXor: '加总异或',
    totalAndSum: '总加和',
    crc16High: '16 CRC,高字节在前',
    crc16Lower: '16 CRC,低字节在前',
  },
  function_code: {
    type: 'ModBus功能码',
    functionCode15: '0F 写入多个线圈状态',
    functionCode16: '10 写入多个保持寄存器',
    functionCode06: '06 写入单个保持寄存器',
    functionCode05: '05 写入单个线圈寄存器',
    functionCode04: '04 读取输入寄存器',
    functionCode03: '03 读取保持寄存器',
    functionCode02: '02 读取输入状态',
    functionCode01: '01 读取线圈状态',
  },
  slave_address: {
    type: '从机地址',
  },
  script_type: {
    type: '脚本类型',
    transportTcpAuth: '设备鉴权',
    transportTcpUp: '上行数据解析',
  },
  dataview_select_origin_type: {
    type: '源地址类型',
    customUrl: '自定义地址',
    serverUrl: '服务器地址',
  },
  date_enum: {
    type: '日期类型',
    oneHour: '1小时',
    fiveHours: '5小时',
    tenHours: '10小时',
    oneDay: '1天',
    sevenDays: '7天',
    thirtyDays: '30天',
  },
  dataview_select_sql_request: {
    type: '大屏设计器sql请求方式',
  },
  dataview_builtin_params: {
    type: '大屏设计器请求方式为get内置参数',
    entityId: '设备',
    dateRange: '日期区间',
    keys: '属性',
    deviceProfileIdOrganizationIdEntityIdKeys: '产品/组织/设备/属性',
    deviceProfileIdOrganizationIdEntityId: '产品/组织/设备',
    organizationId: '组织',
    deviceProfileId: '产品',
  },
  dataview_select_request: {
    type: '大屏设计器默认请求类型',
  },
  dataview_select_methods: {
    type: '大屏设计器请求方式',
    ordinaryRequest: '普通请求',
    websocketRequest: 'websocket请求',
  },
  enabled_platform_admin_auth: {
    type: '平台管理员启用的权限',
    personalCenterView: '个人中心',
    productCategoryList: '产品品类',
    platformNoticeView: '平台通知',
    messageManagementView: '消息管理',
    scheduledTaskView: '定时任务',
    opinionFeedbackView: '意见反馈',
    logManagementView: '日志管理',
    systemPasswordView: '修改密码',
    systemDictView: '字典管理',
    systemOrganizationView: '组织管理',
    appDesignDataResetReset: 'APP恢复出厂设置',
    platformDataResetReset: '平台信息恢复出厂设置',
    appDesignGetGet: '查看APP信息',
    platformGetGet: '查看平台信息',
    appDesignUpdateUpdate: '更新APP信息',
    platformUpdateUpdate: '更新平台信息',
    tenantRoleView: '租户角色',
    tenantManageView: '租户列表',
    dashboardWorkbenchView: '首页',
  },
  disabled_tenant_auth: {
    type: '租户管理员禁用的权限',
    systemRoleView: '角色管理',
    systemAccountView: '账号管理',
    deviceProfileAccessInformationUpdate: '设备接入信息编辑',
    deviceProfileAccessInformationDelete: '设备接入信息删除',
    deviceProfileAccessInformationPost: '设备接入信息新增',
    productCategoryList: '产品品类',
    opinionFeedbackView: '意见反馈',
    scheduledTaskView: '定时任务',
    systemMenuView: '菜单管理',
    systemDictView: '字典管理',
    platformDataResetReset: '平台信息恢复出厂设置',
    platformGetGet: '查看平台信息',
    platformUpdateUpdate: '更新平台信息',
    appDesignDataResetReset: 'APP信息恢复出厂设置',
    appDesignGetGet: '查看APP信息',
    appDesignUpdateUpdate: '更新APP信息',
    tenantRoleView: '租户角色',
    tenantSettingView: '租户配置',
    tenantManageView: '租户列表',
  },
  enabled_sysadmin_auth: {
    type: '超级管理员启用的权限',
    deviceAccessList: '设备接入信息',
    personalCenterView: '个人中心',
    productCategoryList: '产品品类',
    dataviewCenterView: '大屏设计器',
    noticeManagementView: '通知管理',
    tenantManagementView: '租户管理',
    platformCustomView: '平台定制',
    messageManagementView: '消息管理',
    noticeMeView: '我的通知',
    scheduledTaskView: '定时任务',
    opinionFeedbackView: '意见反馈',
    logManagementView: '日志管理',
    systemPasswordView: '修改密码',
    systemDictView: '字典管理',
    systemMenuView: '菜单管理',
    systemAccountView: '账号管理',
    systemRoleView: '角色管理',
    systemOrganizationView: '组织管理',
    dashboardWorkbenchView: '首页',
  },
  original_data: {
    type: '保留原始数据',
    false: '否',
    true: '是',
  },
  custom_mode: {
    type: '方式',
    asynchronous: '异步',
    synchronous: '同步',
  },
  custom_define: {
    type: '自定义类型',
    custom: '自定义',
    service: '服务',
    attribute: '属性',
  },
  report_data_type: {
    type: '上报类型',
    hexadecimal: '16进制',
  },
  event_type: {
    type: '事件类型',
    error: '故障',
    alert: '告警',
    info: '信息',
  },
  call_mode: {
    type: '调用方式',
    synchronous: '同步',
    asynchronous: '异步',
  },
  data_type: {
    type: '数据类型',
    enum: 'enum(枚举值)',
    struct: 'struct(结构体)',
    text: 'text(字符串)',
    boolean: 'bool(布尔型)',
    double: 'double(双精度浮点型)',
    integer: 'int32(整数型)',
  },
  read_write_type: {
    type: '读写类型',
    readOnly: '只读',
    readWrite: '读写',
  },
  attribute_unit: {
    type: '属性单位',
    meter: '米',
    kilometer: '千米',
    decimeter: '分米',
    centimeter: '厘米',
    millimeter: '毫米',
    micrometer: '微米',
    nanometer: '纳米',
    squareMeter: '平方米',
    squareKilometer: '平方千米',
    squareMillimeter: '平方毫米',
    squareCentimeter: '平方厘米',
    hectare: '公顷',
    cubicMeter: '立方米',
    cubicKilometer: '立方千米',
    cubicCentimeter: '立方厘米',
    cubicMillimeter: '立方毫米',
    liter: '升',
    milliliter: '毫升',
    newton: '牛',
    kilogram: '千克',
    gram: '克',
    milligram: '毫克',
    pascal: '帕斯卡',
    kilopascal: '千帕',
    hectopascal: '百帕',
    millipascal: '毫帕',
    celsius: '摄氏度',
    ton: '吨',
    kelvin: '开尔文',
    fahrenheit: '华氏度',
    joule: '焦耳',
    kilojoule: '千焦',
    electronVolt: '电子伏',
    wattHour: '瓦时',
    kilowattHour: '千瓦时',
    calorie: '卡路里',
    watt: '瓦特',
    kilowatt: '千瓦特',
    milliwatt: '毫瓦',
    microwatt: '微瓦',
    hertz: '赫兹',
    radian: '弧度',
    degree: '度',
    minute: '分钟',
    second: '秒',
    meterPerSecond: '米每秒',
    kilometerPerHour: '千米每小时',
    knot: '节',
    year: '年',
    month: '月',
    week: '周',
    day: '日',
    hour: '小时',
    millisecond: '毫秒',
    volt: '伏特',
    millivolt: '毫伏',
    ampere: '安培',
    kiloampere: '千安',
    milliampere: '毫安',
    microampere: '微安',
    ohm: '欧姆',
    farad: '乏',
    microfarad: '微法',
    picofarad: '皮法',
    nanoFarad: '纳法',
    kilogramPerCubicMeter: '千克每立方米',
    gramPerCubicMeter: '克每立方米',
    milligramPerCubicMeter: '毫克每立方米',
    microgramPerCubicMeter: '微克每立方米',
    milligramPerLiter: '毫克每升',
    gramPerLiter: '克每升',
    gramPerMilliliter: '克每毫升',
    bit: '比特',
    lumen: '流明',
    percentage: '百分比',
    decibel: '分贝',
    gravityAcceleration: '重力加速度',
    illuminance: '照度',
    pixel: '像素',
    partsPerMillion: '百万分率',
    microgramPerSquareDecimeterPerDay: '微克每平方分米每天',
    byte: '字节',
    kilobyte: '千字节',
    megabyte: '兆字节',
    gigabyte: '吉字节',
    kilocalorie: '千卡路里',
    microgramPerLiter: '微克每升',
    kiloFaradHour: '千乏时',
    cubicMeterPerHour: '立方米每小时',
    megapascal: '兆帕',
    literPerSecond: '升每秒',
    kilocaloriePerHour: '千卡每小时',
    tonPerHour: '吨每小时',
    revolutionsPerMinute: '转每分钟',
    kilogramPerSecond: '公斤每秒',
    cubicMeterPerSecond: '立方米每秒',
    relativeHumidity: '相对湿度',
    piece: '个',
    microWattPerSquareCentimeter: '微瓦每平方厘米',
    kiloFarad: '千乏',
    kiloVoltAmpere: '千伏安',
    kiloVolt: '千伏',
    standardCubicMeterPerHour: '标准立方米每小时',
    step: '步',
    gear: '档',
    time: '次',
    millimeterPerSecond: '毫米每秒',
    bloodSugar: '血糖',
    bloodPressure: '血压',
    dripRate: '滴速',
    voltPerMeter: '伏特每米',
    newtonPerCoulomb: '牛顿每库仑',
    microSiemenPerCentimeter: '微西每厘米',
    nanogramPerLiter: '纳克每升',
    bar: '巴',
    siemens: '厘斯',
    saturation: '饱和度',
    milliPascal: '厘泊',
    precipitation: '降雨量',
    totalSolarRadiation: '太阳总辐射',
    soilECValue: '土壤EC值',
    pHValue: 'PH值',
    turbidity: '浊度',
    milligramPerKilogram: '毫克每千克',
  },
  query_week: {
    type: '查询周期',
    '1Second': '1秒',
    '5Seconds': '5秒',
    '10Seconds': '10秒',
    '15Seconds': '15秒',
    '30Seconds': '30秒',
    '1Minute': '1分',
    '2Minutes': '2分',
    '5Minutes': '5分',
    '10Minutes': '10分',
    '15Minutes': '15分',
    '30Minutes': '30分',
    '1Hour': '1小时',
    '2Hours': '2小时',
    '5Hours': '5小时',
    '10Hours': '10小时',
    '12Hours': '12小时',
    '1Day': '1天',
    '7Days': '7天',
    '30Days': '30天',
  },
  time_interval: {
    type: '间隔时间',
    '1Second': '1秒',
    '5Seconds': '5秒',
    '10Seconds': '10秒',
    '15Seconds': '15秒',
    '30Seconds': '30秒',
    '1Minute': '1分',
    '2Minutes': '2分',
    '5Minutes': '5分',
    '15Minutes': '15分',
    '30Minutes': '30分',
    '1Hour': '1小时',
    '2Hours': '2小时',
    '5Hours': '5小时',
    '10Hours': '10小时',
    '12Hours': '12小时',
    '1Day': '1天',
  },
  every_month: {
    type: '每月报表执行',
    '31stDay': '31日',
    '30thDay': '30日',
    '29thDay': '29日',
    '28thDay': '28日',
    '27thDay': '27日',
    '26thDay': '26日',
    '25thDay': '25日',
    '24thDay': '24日',
    '23rdDay': '23日',
    '22ndDay': '22日',
    '21stDay': '21日',
    '20thDay': '20日',
    '19thDay': '19日',
    '18thDay': '18日',
    '17thDay': '17日',
    '16thDay': '16日',
    '15thDay': '15日',
    '14thDay': '14日',
    '13thDay': '13日',
    '12thDay': '12日',
    '11thDay': '11日',
    '10thDay': '10日',
    '9thDay': '9日',
    '8thDay': '8日',
    '7thDay': '7日',
    '6thDay': '6日',
    '5thDay': '5日',
    '4thDay': '4日',
    '3rdDay': '3日',
    '2ndDay': '2日',
    '1stDay': '1日',
  },
  every_week: {
    type: '每周执行报表',
    sunday: '星期天',
    saturday: '星期六',
    friday: '星期五',
    thursday: '星期四',
    wednesday: '星期三',
    tuesday: '星期二',
    monday: '星期一',
  },
  every_day: {
    type: '每日执行报表',
    '11Pm': '23点',
    '10Pm': '22点',
    '9Pm': '21点',
    '8Pm': '20点',
    '7Pm': '19点',
    '6Pm': '18点',
    '5Pm': '17点',
    '4Pm': '16点',
    '3Pm': '15点',
    '2Pm': '14点',
    '1Pm': '13点',
    Noon: '12点',
    '11Am': '11点',
    '10Am': '10点',
    '9Am': '09点',
    '8Am': '08点',
    '7Am': '07点',
    '6Am': '06点',
    '5Am': '05点',
    '4Am': '04点',
    '3Am': '03点',
    '2Am': '02点',
    '1Am': '01点',
    Midnight: '00点',
  },
  device_brand_gateway: {
    type: '网关设备厂商',
    tBoxEdgeGateway: 'TBox边缘网关',
    customManufacturer: '自定义厂家',
  },
  exception_log: {
    type: '资源操作类型',
    deviceControl: '设备控制',
    edit: '编辑',
    delete: '删除',
    add: '新增',
    all: '所有',
  },
  operate_log: {
    type: '资源类型',
    sceneLinkage: '场景联动',
    tenantConfiguration: '租户配置',
    tenantManagement: '租户管理',
    deviceConfiguration: '设备配置',
    device: '设备',
  },
  user_log: {
    type: '用户操作类型',
    logout: '登出',
    login: '登录',
  },
  convert_data_to: {
    type: '数据转换',
  },
  read_state: {
    type: '阅读状态',
    unread: '未读',
    read: '已读',
  },
  receiver_type: {
    type: '接收者类型',
    all: '全部',
    organization: '组织',
    department: '部门',
    individual: '个人',
  },
  draft_status: {
    type: '草稿状态',
    draft: '草稿',
    published: '已发布',
  },
  queen_execute_sequence: {
    type: '队列执行顺序',
    sequentialByOriginator: '顺序执行',
    main: '主要',
    highPriority: '高优先级',
  },
  device_type: {
    type: '设备类型',
    gatewaySubDevice: '网关子设备',
    directConnectionDevice: '直连设备',
    gatewayDevice: '网关设备',
  },
  template_purpose: {
    type: '模板用途',
    clearPassword: '清除密码',
    alarmNotice: '告警通知',
    forgetPassword: '忘记密码',
    login: '登录',
  },
  platform_type: {
    type: '平台类型',
    enterpriseWechatPlatform: '企业微信平台',
    aliVoicePlatform: '阿里云语音平台',
    weiXinPlatform: '微信平台',
    dingTalkPlatform: '钉钉平台',
    tencentCloudPlatform: '腾讯云平台',
    aliCloudPlatform: '阿里云平台',
  },
  message_type: {
    type: '消息类型',
    enterpriseWechat: '企业微信',
    voiceNotification: '语音通知',
    dingTalk: '钉钉',
    email: '邮件',
    sms: '短信',
  },
  open_api_classify: {
    type: 'OPENAPI分类类型',
    device: '设备管理',
    alarm: '告警管理',
    video: '视频管理',
    statistics: '统计功能',
    system: '系统管理',
  },
};