dict.ts 20 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: 'Protocol Template Type',
  },
  tcp_access_auth_type: {
    type: 'TCP Authentication Method',
    dataCarrying: 'Data Carrying',
    registrationPackage: 'Registration Package',
  },
  streaming_media_type: {
    type: 'Streaming Media Platform Type',
    hikvisionIscPlatform: 'Hikvision ISC Platform',
    fluoritePlatform: 'Fluorite Platform',
  },
  category_field: {
    type: 'Product Category Field',
    environmentalPerception: 'Environmental Perception',
    energyManagement: 'Energy Management',
    intelligentPark: 'Intelligent Park',
    intelligentAgriculture: 'Intelligent Agriculture',
    edgeComputing: 'Edge Computing',
    intelligentIndustry: 'Intelligent Industry',
    intelligentRobot: 'Intelligent Robot',
    intelligentCar: 'Intelligent Car',
    smartCity: 'Smart City',
    smartLife: 'Smart Life',
  },
  originator_types: {
    type: 'Entity Type',
    ruleNodes: 'Rule Nodes',
    ruleChain: 'Rule Chain',
    instrumentPanel: 'Instrument Panel',
    user: 'User',
    customer: 'Customer',
    tenant: 'Tenant',
    entityView: 'Entity View',
    assets: 'Assets',
    equipment: 'Equipment',
  },
  message_types_filter: {
    type: 'Message Type',
  },
  register_data_format: {
    type: 'Register Data Format',
    bitPosition: 'Bit',
    sixteenBitUnsigned: '16-bit Unsigned',
    sixteenBitSigned: '16-bit Signed',
  },
  script_message_type: {
    type: 'Script Message Type',
  },
  notice_type: {
    type: 'Notice Type',
    meeting: 'Meeting',
    notice: 'Notice',
  },
  severity_type: {
    type: 'Alert Severity',
    uncertain: 'Uncertain',
    warning: 'Warning',
    minor: 'Minor',
    major: 'Major',
    critical: 'Critical',
  },
  interface_type: {
    type: 'Interface Type',
    systemDefault: 'System Default',
    custom: 'Custom',
  },
  disabled_platform_admin_auth: {
    type: 'Disabled Permissions for Platform Admin',
    largeScreenDesigner: 'Large Screen Designer',
    dictionaryManagement: 'Dictionary Management',
    accountManagement: 'Account Management',
    roleManagement: 'Role Management',
    menuManagement: 'Menu Management',
    scheduledTasks: 'Scheduled Tasks',
  },
  disabled_customer_auth: {
    type: 'Disabled Customer Permissions',
    accountManagement: 'Account Management',
    roleManagement: 'Role Management',
    templateConfigurationDesign: 'Template Configuration Design',
    templateConfigurationDeletion: 'Template Configuration Deletion',
    templateConfigurationAddition: 'Template Configuration Addition',
    templateConfigurationEdit: 'Template Configuration Edit',
    productList: 'Product List',
    publicInterfaceUpdate: 'Public Interface Update',
    publicInterfacePublish: 'Public Interface Publish',
    publicInterfaceDelete: 'Public Interface Delete',
    publicInterfaceUnpublish: 'Public Interface Unpublish',
    publicInterfaceManagement: 'Public Interface Management',
    publicInterfaceAddition: 'Public Interface Addition',
    kanbanManagementDetails: 'Kanban Management Details',
    scheduledTasks: 'Scheduled Tasks',
    feedbackOnOpinions: 'Feedback on Opinions',
    logManagement: 'Log Management',
    dictionaryManagement: 'Dictionary Management',
    menuManagement: 'Menu Management',
    organizationalManagement: 'Organizational Management',
    platformCustomization: 'Platform Customization',
    reportExportDeletion: 'Report Export Deletion',
    reportConfiguration: 'Report Configuration',
    videoConfigurationDeletion: 'Video Configuration Deletion',
    videoAddition: 'Video Addition',
    videoConfigurationEdit: 'Video Configuration Edit',
    largeScreenDesignerUnpublished: 'Large Screen Designer Unpublished',
    equipmentListPublic: 'Equipment List Public',
    equipmentImport: 'Equipment Import',
    equipmentListDeletion: 'Equipment List Deletion',
    equipmentListEdit: 'Equipment List Edit',
    equipmentListAddition: 'Equipment List Addition',
    kanbanManagementSharing: 'Kanban Management Sharing',
    configurationCenterSharing: 'Configuration Center Sharing',
    largeScreenDesignerSharing: 'Large Screen Designer Sharing',
    largeScreenDesignerDesign: 'Large Screen Designer Design',
    largeScreenDesignerPublish: 'Large Screen Designer Publish',
    largeScreenDesignerDeletion: 'Large Screen Designer Deletion',
    largeScreenDesignerAddition: 'Large Screen Designer Addition',
    largeScreenDesignerEdit: 'Large Screen Designer Edit',
    configurationCenterDesign: 'Configuration Center Design',
    configurationCenterDeletion: 'Configuration Center Deletion',
    configurationCenterEdit: 'Configuration Center Edit',
    configurationCenterAddition: 'Configuration Center Addition',
    kanbanManagementAddition: 'Kanban Management/Addition',
    kanbanDeletion: 'Kanban Deletion',
    kanbanUpdate: 'Kanban Update',
    ruleEngineView: 'Rule Engine View',
    scriptManagementView: 'Script Management View',
    alarmProfileView: 'Alarm Profile View',
    alarmTemplateView: 'Alarm Template View',
    streamingProfileView: 'Streaming Profile View',
    taskManagementView: 'Task Management View',
    messageTemplateView: 'Message Template View',
    messageConfigView: 'Message Config View',
    noticeManagementView: 'Notice Management View',
    otaUpgradeView: 'OTA Upgrade View',
    systemManagementView: 'System Management View',
  },
  interface_Type: {
    type: 'Interface Type',
    custom: 'Custom',
    systemDefault: 'System Default',
  },
  data_validate: {
    type: 'CRC Data Validation',
    crc32High: 'CRC32, High Byte First',
    crc32Lower: 'CRC32, Low Byte First',
    andTotalXor: 'AND Total XOR',
    totalAndSum: 'Total AND Sum',
    crc16High: 'CRC16, High Byte First',
    crc16Lower: 'CRC16, Low Byte First',
  },
  function_code: {
    type: 'ModBus Function Code',
    functionCode15: '0F Write Multiple Coil States',
    functionCode16: '10 Write Multiple Holding Registers',
    functionCode06: '06 Write Single Holding Register',
    functionCode05: '05 Write Single Coil Register',
    functionCode04: '04 Read Input Registers',
    functionCode03: '03 Read Holding Registers',
    functionCode02: '02 Read Input Status',
    functionCode01: '01 Read Coil Status',
  },
  slave_address: {
    type: 'Slave Address',
  },
  script_type: {
    type: 'Script Type',
    transportTcpAuth: 'Device Authentication',
    transportTcpUp: 'Upstream Data Parsing',
  },
  dataview_select_origin_type: {
    type: 'Source Address Type',
    customUrl: 'Custom Address',
    serverUrl: 'Server Address',
  },
  date_enum: {
    type: 'Date Type',
    oneHour: '1 Hour',
    fiveHours: '5 Hours',
    tenHours: '10 Hours',
    oneDay: '1 Day',
    sevenDays: '7 Days',
    thirtyDays: '30 Days',
  },
  dataview_select_sql_request: {
    type: 'Large Screen Designer SQL Request Method',
  },
  dataview_builtin_params: {
    type: 'Large Screen Designer GET Built-in Parameters',
    entityId: 'Device',
    dateRange: 'Date Range',
    keys: 'Attributes',
    deviceProfileIdOrganizationIdEntityIdKeys: 'Product/Organization/Device/Attributes',
    deviceProfileIdOrganizationIdEntityId: 'Product/Organization/Device',
    organizationId: 'Organization',
    deviceProfileId: 'Product',
  },
  dataview_select_request: {
    type: 'Large Screen Designer Default Request Type',
  },
  dataview_select_methods: {
    type: 'Large Screen Designer Request Method',
    ordinaryRequest: 'Ordinary Request',
    websocketRequest: 'WebSocket Request',
  },
  enabled_platform_admin_auth: {
    type: 'Enabled Platform Admin Permissions',
    personalCenterView: 'Personal Center',
    productCategoryList: 'Product Category',
    platformNoticeView: 'Platform Notice',
    messageManagementView: 'Message Management',
    scheduledTaskView: 'Scheduled Task',
    opinionFeedbackView: 'Feedback on Opinions',
    logManagementView: 'Log Management',
    systemPasswordView: 'Change Password',
    systemDictView: 'Dictionary Management',
    systemOrganizationView: 'Organization Management',
    appDesignDataResetReset: 'App Factory Reset',
    platformDataResetReset: 'Platform Factory Reset',
    appDesignGetGet: 'View App Information',
    platformGetGet: 'View Platform Information',
    appDesignUpdateUpdate: 'Update App Information',
    platformUpdateUpdate: 'Update Platform Information',
    tenantRoleView: 'Tenant Role',
    tenantManageView: 'Tenant List',
    dashboardWorkbenchView: 'Dashboard',
  },
  disabled_tenant_auth: {
    type: 'Disabled Tenant Admin Permissions',
    systemRoleView: 'Role Management',
    systemAccountView: 'Account Management',
    deviceProfileAccessInformationUpdate: 'Device Access Info Edit',
    deviceProfileAccessInformationDelete: 'Device Access Info Delete',
    deviceProfileAccessInformationPost: 'Device Access Info Add',
    productCategoryList: 'Product Category',
    opinionFeedbackView: 'Feedback on Opinions',
    scheduledTaskView: 'Scheduled Task',
    systemMenuView: 'Menu Management',
    systemDictView: 'Dictionary Management',
    platformDataResetReset: 'Platform Factory Reset',
    platformGetGet: 'View Platform Information',
    platformUpdateUpdate: 'Update Platform Information',
    appDesignDataResetReset: 'App Factory Reset',
    appDesignGetGet: 'View App Information',
    appDesignUpdateUpdate: 'Update App Information',
    tenantRoleView: 'Tenant Role',
    tenantSettingView: 'Tenant Configuration',
    tenantManageView: 'Tenant List',
  },
  enabled_sysadmin_auth: {
    type: 'Enabled Super Admin Permissions',
    deviceAccessList: 'Device Access Info',
    personalCenterView: 'Personal Center',
    productCategoryList: 'Product Category',
    dataviewCenterView: 'Large Screen Designer',
    noticeManagementView: 'Notice Management',
    tenantManagementView: 'Tenant Management',
    platformCustomView: 'Platform Customization',
    messageManagementView: 'Message Management',
    noticeMeView: 'My Notices',
    scheduledTaskView: 'Scheduled Task',
    opinionFeedbackView: 'Feedback on Opinions',
    logManagementView: 'Log Management',
    systemPasswordView: 'Change Password',
    systemDictView: 'Dictionary Management',
    systemMenuView: 'Menu Management',
    systemAccountView: 'Account Management',
    systemRoleView: 'Role Management',
    systemOrganizationView: 'Organization Management',
    dashboardWorkbenchView: 'Dashboard',
  },
  original_data: {
    type: 'Retain Original Data',
    false: 'No',
    true: 'Yes',
  },
  custom_mode: {
    type: 'Mode',
    asynchronous: 'Asynchronous',
    synchronous: 'Synchronous',
  },
  custom_define: {
    type: 'Custom Type',
    custom: 'Custom',
    service: 'Service',
    attribute: 'Attribute',
  },
  report_data_type: {
    type: 'Report Data Type',
    hexadecimal: 'Hexadecimal',
  },
  event_type: {
    type: 'Event Type',
    error: 'Error',
    alert: 'Alert',
    info: 'Information',
  },
  call_mode: {
    type: 'Call Mode',
    synchronous: 'Synchronous',
    asynchronous: 'Asynchronous',
  },
  data_type: {
    type: 'Data Type',
    enum: 'enum (Enumeration)',
    struct: 'struct (Structure)',
    text: 'text (String)',
    boolean: 'bool (Boolean)',
    double: 'double (Double Precision Floating Point)',
    integer: 'int32 (Integer)',
  },
  read_write_type: {
    type: 'Read/Write Type',
    readOnly: 'Read-Only',
    readWrite: 'Read/Write',
  },
  attribute_unit: {
    type: 'Attribute Unit',
    meter: 'Meter',
    kilometer: 'Kilometer',
    decimeter: 'Decimeter',
    centimeter: 'Centimeter',
    millimeter: 'Millimeter',
    micrometer: 'Micrometer',
    nanometer: 'Nanometer',
    squareMeter: 'Square Meter',
    squareKilometer: 'Square Kilometer',
    squareMillimeter: 'Square Millimeter',
    squareCentimeter: 'Square Centimeter',
    hectare: 'Hectare',
    cubicMeter: 'Cubic Meter',
    cubicKilometer: 'Cubic Kilometer',
    cubicCentimeter: 'Cubic Centimeter',
    cubicMillimeter: 'Cubic Millimeter',
    liter: 'Liter',
    milliliter: 'Milliliter',
    newton: 'Newton',
    kilogram: 'Kilogram',
    gram: 'Gram',
    milligram: 'Milligram',
    pascal: 'Pascal',
    kilopascal: 'Kilopascal',
    hectopascal: 'Hectopascal',
    millipascal: 'Millipascal',
    celsius: 'Celsius',
    ton: 'Ton',
    kelvin: 'Kelvin',
    fahrenheit: 'Fahrenheit',
    joule: 'Joule',
    kilojoule: 'Kilojoule',
    electronVolt: 'Electron Volt',
    wattHour: 'Watt Hour',
    kilowattHour: 'Kilowatt Hour',
    calorie: 'Calorie',
    watt: 'Watt',
    kilowatt: 'Kilowatt',
    milliwatt: 'Milliwatt',
    microwatt: 'Microwatt',
    hertz: 'Hertz',
    radian: 'Radian',
    degree: 'Degree',
    minute: 'Minute',
    second: 'Second',
    meterPerSecond: 'Meter Per Second',
    kilometerPerHour: 'Kilometer Per Hour',
    knot: 'Knot',
    year: 'Year',
    month: 'Month',
    week: 'Week',
    day: 'Day',
    hour: 'Hour',
    millisecond: 'Millisecond',
    volt: 'Volt',
    millivolt: 'Millivolt',
    ampere: 'Ampere',
    kiloampere: 'Kiloampere',
    milliampere: 'Milliampere',
    microampere: 'Microampere',
    ohm: 'Ohm',
    farad: 'Farad',
    microfarad: 'Microfarad',
    picofarad: 'Picofarad',
    nanoFarad: 'Nano Farad',
    kilogramPerCubicMeter: 'Kilogram Per Cubic Meter',
    gramPerCubicMeter: 'Gram Per Cubic Meter',
    milligramPerCubicMeter: 'Milligram Per Cubic Meter',
    microgramPerCubicMeter: 'Microgram Per Cubic Meter',
    milligramPerLiter: 'Milligram Per Liter',
    gramPerLiter: 'Gram Per Liter',
    gramPerMilliliter: 'Gram Per Milliliter',
    bit: 'Bit',
    lumen: 'Lumen',
    percentage: 'Percentage',
    decibel: 'Decibel',
    gravityAcceleration: 'Gravity Acceleration',
    illuminance: 'Illuminance',
    pixel: 'Pixel',
    partsPerMillion: 'Parts Per Million',
    microgramPerSquareDecimeterPerDay: 'Microgram Per Square Decimeter Per Day',
    byte: 'Byte',
    kilobyte: 'Kilobyte',
    megabyte: 'Megabyte',
    gigabyte: 'Gigabyte',
    kilocalorie: 'Kilocalorie',
    microgramPerLiter: 'Microgram Per Liter',
    kiloFaradHour: 'Kilo Farad Hour',
    cubicMeterPerHour: 'Cubic Meter Per Hour',
    megapascal: 'Megapascal',
    literPerSecond: 'Liter Per Second',
    kilocaloriePerHour: 'Kilocalorie Per Hour',
    tonPerHour: 'Ton Per Hour',
    revolutionsPerMinute: 'Revolutions Per Minute',
    kilogramPerSecond: 'Kilogram Per Second',
    cubicMeterPerSecond: 'Cubic Meter Per Second',
    relativeHumidity: 'Relative Humidity',
    piece: 'Piece',
    microWattPerSquareCentimeter: 'Micro Watt Per Square Centimeter',
    kiloFarad: 'Kilo Farad',
    kiloVoltAmpere: 'Kilo Volt Ampere',
    kiloVolt: 'Kilo Volt',
    standardCubicMeterPerHour: 'Standard Cubic Meter Per Hour',
    step: 'Step',
    gear: 'Gear',
    time: 'Time',
    millimeterPerSecond: 'Millimeter Per Second',
    bloodSugar: 'Blood Sugar',
    bloodPressure: 'Blood Pressure',
    dripRate: 'Drip Rate',
    voltPerMeter: 'Volt Per Meter',
    newtonPerCoulomb: 'Newton Per Coulomb',
    microSiemenPerCentimeter: 'Micro Siemen Per Centimeter',
    nanogramPerLiter: 'Nanogram Per Liter',
    bar: 'Bar',
    siemens: 'Siemens',
    saturation: 'Saturation',
    milliPascal: 'Milli Pascal',
    precipitation: 'Precipitation',
    totalSolarRadiation: 'Total Solar Radiation',
    soilECValue: 'Soil EC Value',
    pHValue: 'P H Value',
    turbidity: 'Turbidity',
    milligramPerKilogram: 'Milligram Per Kilogram',
  },
  query_week: {
    type: 'Query Interval',
    '1Second': '1 Second',
    '5Seconds': '5 Seconds',
    '10Seconds': '10 Seconds',
    '15Seconds': '15 Seconds',
    '30Seconds': '30 Seconds',
    '1Minute': '1 Minute',
    '2Minutes': '2 Minutes',
    '5Minutes': '5 Minutes',
    '10Minutes': '10 Minutes',
    '15Minutes': '15 Minutes',
    '30Minutes': '30 Minutes',
    '1Hour': '1 Hour',
    '2Hours': '2 Hours',
    '5Hours': '5 Hours',
    '10Hours': '10 Hours',
    '12Hours': '12 Hours',
    '1Day': '1 Day',
    '7Days': '7 Days',
    '30Days': '30 Days',
  },
  time_interval: {
    type: 'Time Interval',
    '1Second': '1 Second',
    '5Seconds': '5 Seconds',
    '10Seconds': '10 Seconds',
    '15Seconds': '15 Seconds',
    '30Seconds': '30 Seconds',
    '1Minute': '1 Minute',
    '2Minutes': '2 Minutes',
    '5Minutes': '5 Minutes',
    '15Minutes': '15 Minutes',
    '30Minutes': '30 Minutes',
    '1Hour': '1 Hour',
    '2Hours': '2 Hours',
    '5Hours': '5 Hours',
    '10Hours': '10 Hours',
    '12Hours': '12 Hours',
    '1Day': '1 Day',
  },
  every_month: {
    type: 'Monthly Report Execution',
    '31stDay': '31st Day',
    '30thDay': '30th Day',
    '29thDay': '29th Day',
    '28thDay': '28th Day',
    '27thDay': '27th Day',
    '26thDay': '26th Day',
    '25thDay': '25th Day',
    '24thDay': '24th Day',
    '23rdDay': '23rd Day',
    '22ndDay': '22nd Day',
    '21stDay': '21st Day',
    '20thDay': '20th Day',
    '19thDay': '19th Day',
    '18thDay': '18th Day',
    '17thDay': '17th Day',
    '16thDay': '16th Day',
    '15thDay': '15th Day',
    '14thDay': '14th Day',
    '13thDay': '13th Day',
    '12thDay': '12th Day',
    '11thDay': '11th Day',
    '10thDay': '10th Day',
    '9thDay': '9th Day',
    '8thDay': '8th Day',
    '7thDay': '7th Day',
    '6thDay': '6th Day',
    '5thDay': '5th Day',
    '4thDay': '4th Day',
    '3rdDay': '3rd Day',
    '2ndDay': '2nd Day',
    '1stDay': '1st Day',
  },
  every_week: {
    type: 'Weekly Report Execution',
    sunday: 'Sunday',
    saturday: 'Saturday',
    friday: 'Friday',
    thursday: 'Thursday',
    wednesday: 'Wednesday',
    tuesday: 'Tuesday',
    monday: 'Monday',
  },
  every_day: {
    type: 'Daily Report Execution',
    '11Pm': '11 PM',
    '10Pm': '10 PM',
    '9Pm': '9 PM',
    '8Pm': '8 PM',
    '7Pm': '7 PM',
    '6Pm': '6 PM',
    '5Pm': '5 PM',
    '4Pm': '4 PM',
    '3Pm': '3 PM',
    '2Pm': '2 PM',
    '1Pm': '1 PM',
    Noon: 'Noon',
    '11Am': '11 AM',
    '10Am': '10 AM',
    '9Am': '9 AM',
    '8Am': '8 AM',
    '7Am': '7 AM',
    '6Am': '6 AM',
    '5Am': '5 AM',
    '4Am': '4 AM',
    '3Am': '3 AM',
    '2Am': '2 AM',
    '1Am': '1 AM',
    Midnight: 'Midnight',
  },
  device_brand_gateway: {
    type: 'Gateway Device Manufacturer',
    tBoxEdgeGateway: 'TBox Edge Gateway',
    customManufacturer: 'Custom Manufacturer',
  },
  exception_log: {
    type: 'Resource Operation Type',
    deviceControl: 'Device Control',
    edit: 'Edit',
    delete: 'Delete',
    add: 'Add',
    all: 'All',
  },
  operate_log: {
    type: 'Resource Type',
    sceneLinkage: 'Scene Linkage',
    tenantConfiguration: 'Tenant Configuration',
    tenantManagement: 'Tenant Management',
    deviceConfiguration: 'Device Configuration',
    device: 'Device',
  },
  user_log: {
    type: 'User Operation Type',
    logout: 'Logout',
    login: 'Login',
  },
  convert_data_to: {
    type: 'Data Conversion',
  },
  read_state: {
    type: 'Read Status',
    unread: 'Unread',
    read: 'Read',
  },
  receiver_type: {
    type: 'Receiver Type',
    all: 'All',
    organization: 'Organization',
    department: 'Department',
    individual: 'Individual',
  },
  draft_status: {
    type: 'Draft Status',
    draft: 'Draft',
    published: 'Published',
  },
  queen_execute_sequence: {
    type: 'Queue Execution Sequence',
    sequentialByOriginator: 'Sequential by Originator',
    main: 'Main',
    highPriority: 'High Priority',
  },
  device_type: {
    type: 'Device Type',
    gatewaySubDevice: 'Gateway Sub-device',
    directConnectionDevice: 'Direct Connection Device',
    gatewayDevice: 'Gateway Device',
  },
  template_purpose: {
    type: 'Template Purpose',
    clearPassword: 'Clear Password',
    alarmNotice: 'Alarm Notice',
    forgetPassword: 'Forgot Password',
    login: 'Login',
  },
  platform_type: {
    type: 'Platform Type',
    enterpriseWechatPlatform: 'Enterprise WeChat Platform',
    aliVoicePlatform: 'Aliyun Voice Platform',
    weiXinPlatform: 'WeChat Platform',
    dingTalkPlatform: 'DingTalk Platform',
    tencentCloudPlatform: 'Tencent Cloud Platform',
    aliCloudPlatform: 'Aliyun Platform',
  },
  message_type: {
    type: 'Message Type',
    enterpriseWechat: 'Enterprise WeChat',
    voiceNotification: 'Voice Notification',
    dingTalk: 'DingTalk',
    email: 'Email',
    sms: 'SMS',
  },
  open_api_classify: {
    type: 'Open api classify',
    device: 'DEVICE',
    alarm: 'ALARM',
    video: 'VIDEO',
    statistics: 'STATISTICS',
    system: 'SYSTEM',
  },
};