【调度系统】广东民航医疗快线调度系统源代码
克樊道人
2024-12-02 61ce8cc6883e5f94e6470141df3484167caf31ed
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
function langChinese(){
    this.open_home = "首页";
    this.open_webApi = "Web 开发";
    this.open_phoneApi = "手机开发";
    this.open_windowsApi = "Windows 开发";
    this.open_webApiFile = "Web开发接口文档";
    this.open_webApiDesc = "Web平台各接口介绍,及输入输出说明";
    this.open_phoneApiFile = "手机开发接口文档";
    this.open_phoneApiDesc = "手机开发各接口介绍,及输入输出说明";
    this.open_windowsApiFile = "Windows开发接口文档";
    this.open_windowsApiDesc = "Windows开发各接口介绍,及输入输出说明";
    this.open_interfaceDesc = "接口说明及错误码";
    this.open_jsonpUseExample = "JSONP調用示例";
    this.open_userLoginOrOut = "用户登录注销";
    this.open_userLogin = "用户登录";
    this.open_userLogout = "用户注销";
    this.open_vehicleInfo = "车辆信息查询";
    this.open_getDevIdnoByVehiIdno = "获取车辆设备号";
    this.open_getDevOnlineStatus = "获取设备在线状态";
    this.open_getDeviceStatus = "获取设备状态(gps状态)";
    this.open_getDeviceTrack = "获取设备历史轨迹";
    this.open_getDeviceAlarmInfo = "获取设备报警数据(分页)";
    this.open_getUserVehicleInfo = "获取用户车辆信息";
    this.open_videoOperate = "视频相关业务";
    this.open_initVideo = "初始化视频插件";
    this.open_realtimeVideo_html = "实时视频(网页集成)";
    this.open_realtimeVideo_js = "实时视频(JavaScript)";
    this.open_monitor = "监听";
    this.open_talkback = "对讲";
    this.open_queryRecording = "录像查询";
    this.open_downloadRecording = "录像下载";
    this.open_remotePlayback = "远程回放";
    this.open_capture = "抓拍";
    this.open_vehicleControlOperate = "车辆控制业务";
    this.open_getUserServer = "获取用户服务器";
    this.open_vehicleControl = "车辆控制";
    this.open_tts = "TTS";
    this.open_ptz = "PTZ控制";
    
    
    this.open_deviceManagement = "设备管理";
    this.open_addDevice = "新增设备";
    this.open_addVehicle = "新增车辆";
    this.open_delDevice = "删除设备";
    this.open_delVehicle = "删除车辆";
    
    //webAPI
    this.success = "成功";
    this.failure = "失败";
    this.yes = "是";
    this.no = "否";
    this.nothing = "无";
    this.open_one_char = "(1)";
    this.open_two_char = "(2)";
    this.open_three_char = "(3)";
    this.open_four_char = "(4)";
    this.open_five_char = "(5)";
    this.open_six_char = "(6)";
    this.open_param_encode = "参数编码";
    this.open_HTTP_MIME_type = "HTTP MIME 类型";
    this.open_common_param = "通用参数";
    this.open_private_param = "私有参数";
    this.open_error_code_desc = "错误码说明";
    this.open_param_encode_1 = "所有的请求和响应数据编码皆为utf-8格式,url里的所有参数值请做URIEncode编码;";
    this.open_param_encode_2 = "各个参数请进行URL 编码(UTF-8),编码时请遵守 RFC 1738。";
    this.open_cb_jsession = "用户登录返回的会话号";
    this.open_cb_callback = "第三方通过JS调用Open API时可以通过指定callback参数来要求平台端返回JSONP代码,以解决跨域问题。callback参数值只能是字母数字下划线。";
    this.open_cb_desc = "通用返回参数说明(json格式):";
    this.open_cb_ok = "0:正确返回";
    this.open_cb_other = "其它:失败。";
    this.open_detail_desc = "详细参见:";
    this.open_cb_callback_desc = "请求时所带的callback";
    this.open_req_type = "HTTP请求方式";
    this.open_req_param_desc = "输入参数说明";
    this.open_req_see = "参见:";
    this.open_req_exp = "请求示例";
    this.open_req_exp_tit = "请求示例:";
    this.open_cb_param_desc = "返回参数说明";
    this.open_cb_exp = "正确返回示例";
    this.open_ref_file = "引用文件";
    this.open_call_method = "调用方法";
    this.open_op_exp = "操作实例";
    this.open_op_exp_1 = "操作示例";
    this.open_op_js = "参考JavaScript代码";
    this.open_video_page_desc = "可直接调用网页链接观看实时视频。";
    this.open_video_js = "JavaScript代码";
    this.open_op_notice = "注意:";
    this.open_op_jsonp = "JSONP格式";
    this.open_jsonp_desc = "此处JSONP代码格式为";
    this.open_op_server = "服务器信息用于车辆控制和发送TTS。";
    this.open_video_init_desc = "视频集成有两种方案,用flash插件或者用ocx控件,建议web客户端使用flash插件";
    this.open_video_ref_js = "引入jQuery 和 swfobject";
    this.open_video_html_ready = "准备HTML代码";
    this.open_file_across = "文件跨天";
    this.open_file_across_1 = "例如搜索20150913的文件,可能出现两种录像";
    this.open_file_across_2 = "返回 20150912 23:00:00 至 20150913 01:00:00的录像,其中返回的day字段值为12;";
    this.open_file_across_3 = "返回 20150913 23:00:00 至 20150914 01:00:00,其中返回的day字段值为13。";
    this.open_download_type = "下载类型";
    this.open_download_seg = "分段下载";
    this.open_download_seg_tit = "分段下载:";
    this.open_download_all = "全文件下载:";
    this.open_download_direct = "直接下载";
    this.open_download_direct_tit = "直接下载:";
    this.open_download_seg_desc = "主要是下载设备上的录像文件,下载到服务器中保存,然后通过直接下载方式下载到本地;";
    this.open_download_seg_desc_1 = "分段下载分为全文件下载和分段下载。";
    this.open_download_seg_desc_2 = "所有设备均支持分段下载。";
    this.open_download_all_desc = "设备厂家类型为16、17、20和22的支持直接下载,如果视频文件包含多个通道,则只能分段下载。(设备厂家类型可在获取GPS状态时取得)";
    this.open_download_direct_desc = "主要是下载服务器上的录像,下载到本地。";
    this.open_vehicle_ol_rq = "车辆必须在线才能操作";
    this.open_login_account = "登录账号";
    this.open_login_pwd = "登陆密码";
    this.open_login_pwd_desc = "密码需要进行md5加密。";
    this.open_vehicle_id = "车辆ID";
    this.open_vehicle_idno = "车牌号";
    this.open_device_idno = "设备号";
    this.open_device_idno_desc = "如果已被车辆使用,则删除失败。";
    this.open_delDevice_desc= "是否删除车辆上的设备 1删除,否则不删";
    this.open_map_lnglat = "地图经纬度转换";
    this.open_map_lnglat_desc = "1表示经纬度转换为谷歌地图经纬度,2表示经纬度转换为百度地图经纬度,默认转为谷歌地图经纬度。";
    this.open_start_time = "开始时间";
    this.open_end_time = "结束时间";
    this.open_time_range_1 = "开始时间不得大于结束时间,并且查询天数不得大于7天。";
    this.open_time_range_2 = "开始时间不得大于结束时间,并且查询天数不得大于90天。";
    this.open_page_now = "当前查询页码";
    this.open_page_record = "每页条数";
    this.open_page_total = "查询数据总条数";
    this.open_page_allPage = "查询数据总页数";
    this.open_alarm_type = "报警类型";
    this.open_alarm_type_desc = "以 “,” 分割,若为空,则查询所有类型。";
    this.open_handle_status = "处理状态";
    this.open_handle_status_desc = "1表示已处理,0表示未处理,其他则查询全部状态。";
    this.open_handle_status_desc_1 = "1表示已处理,0表示未处理。";
    this.open_query_ref_server = "查询相关服务器信息";
    this.open_query_video_idno = "当查询服务器上的录像时,则表示车牌号。";
    this.open_query_location = "搜索位置";
    this.open_query_location_desc = "1表示设备,2表示存储服务器,4表示下载服务器。";
    this.open_query_chn = "搜索通道";
    this.open_query_begChn = "(从0开始)";
    this.open_query_chn_desc = "0表示通道1,1表示通道2,-1表示所有通道。";
    this.open_query_year = "搜索年份";
    this.open_query_month = "搜索月份";
    this.open_query_day = "搜索日期";
    this.open_video_type = "录像类型";
    this.open_video_type_desc_1 = "0表示常规,1表示报警,-1表示所有。";
    this.open_video_type_desc_2 = "0表示常规,1表示报警。";
    this.open_file_type = "文件类型";
    this.open_file_one_type_desc = "1表示图像";
    this.open_file_type_desc = "2表示录像。";
    this.open_start_second = "开始秒数";
    this.open_end_second = "结束秒数";
    this.open_start_second_desc = "单位秒 (0 - 86399)";
    this.open_file_start_time = "文件开始时间";
    this.open_file_end_time = "文件结束时间";
    this.open_file_start_time_desc = "大于等于源文件开始时间,小于等于源文件结束时间。";
    this.open_srcfile_start_time = "源文件开始时间";
    this.open_srcfile_end_time = "源文件结束时间";
    this.open_video_tag = "录像文件标签";
    this.open_video_path = "录像文件路径";
    this.open_file_size = "文件大小";
    this.open_video_chn = "录像通道";
    this.open_download_type = "下载方式";
    this.open_download_type_desc = "1表示全文件下载,2表示分段下载。";
    this.open_server_id = "服务器ID";
    this.open_server_id_desc = "录像查询时返回,字段svr。";
    this.open_video_location = "视频文件位置";
    this.open_video_find_desc = "录像查询时返回。";
    this.open_video_fill_1 = "请填为0";
    this.open_video_fill_2 = "请填为1";
    this.open_file_path = "文件路径";
    this.open_download_save_name = "下载后保存的名称";
    this.open_gps_interval = "GPS上报间隔";
    this.open_gps_interval_time = "间隔时间";
    this.open_gps_interval_time_desc = "单位秒,0-3600,0表示不上传GPS。";
    this.open_other_control = "其他车辆控制";
    this.open_control_type = "控制指令类型";
    this.open_tts_text = "TTS文字";
    this.open_tts_text_desc = "长度不能超过240个字符。";
    this.open_jsession_id = "会话号";
    this.open_jsession_callback = "用户登录返回的会话号";
    this.open_device_type = "设备类型";
    this.open_device_type_desc = "1表示视频设备,0表示GPS设备,如果只有一个设备,则既是视频设备又是GPS设备。";
    this.open_device_type_desc1 = "1表示视频设备,2表示GPS设备";
    this.open_status_online = "在线状态";
    this.open_status_online_desc = "1表示在线,否则不在线。";
    this.open_status_lng = "经度";
    this.open_status_lat = "纬度";
    this.open_status_lng_desc = "如果设备定位无效,值为0。";
    this.open_status_mapLng = "地图经度";
    this.open_status_mapLat = "地图纬度";
    this.open_status_mapLng_desc = "经过转换后的经度";
    this.open_status_mapLat_desc = "经过转换后的纬度";
    this.open_status_factory = "厂家类型";
    this.open_status_subFactory = "厂家子类型";
    this.open_status_speed = "速度";
    this.open_status_speed_desc = "单位: km/h,使用中需先除以10。";
    this.open_status_gpsTime = "GPS上传时间";
    this.open_status_protocol = "通信协议类型";
    this.open_status_hard = "硬盘类型";
    this.open_status_hard_desc = "1表示SD卡,2表示硬盘,3表示SSD卡。";
    this.open_status_audio = "音频类型";
    this.open_status_network = "网络类型";
    this.open_status_network_desc = "1表示3G,2表示WIFI。";
    this.open_status_server = "网关服务器编号";
    this.open_status_status = "状态";
    this.open_status_temp = "温度传感器";
    this.open_status_direc = "方向";
    this.open_status_direc_desc = "正北方向为0度,顺时针方向增大,最大值360度。";
    this.open_status_parkTime = "停车时长";
    this.open_status_parkTime_desc = "单位: 秒。";
    this.open_status_mileage = "里程";
    this.open_status_mileage_desc = "单位: 米。";
    this.open_status_fuel = "油量";
    this.open_status_fuel_desc = "单位: 升,使用中需先除以100。";
    this.open_track_data = "历史轨迹明细数据";
    this.open_alarm_info = "报警信息";
    this.open_alarm_desc = "报警描述";
    this.open_alarm_endTime = "报警结束时间(UTC) 秒数";
    this.open_alarm_startTime = "报警开始时间(UTC) 秒数";
    this.open_alarm_guid = "报警唯一编号";
    this.open_alarm_param = "报警参数";
    this.open_alarm_img = "图片信息";
    this.open_alarm_img_desc = "用;分隔,为http地址路径,可以为多个图片信息。";
    this.open_alarm_handleId = "处理用户id";
    this.open_alarm_handleCont = "处理内容";
    this.open_alarm_handleTime = "处理时间";
    this.open_alarm_begStatus = "报警开始状态";
    this.open_alarm_endStatus = "报警结束状态";
    this.open_alarm_begLng = "报警开始经度";
    this.open_alarm_begLat = "报警开始纬度";
    this.open_alarm_endLng = "报警结束经度";
    this.open_alarm_endLat = "报警结束纬度";
    this.open_alarm_begMapLng = "报警开始地图经度";
    this.open_alarm_begMapLat = "报警开始地图纬度";
    this.open_alarm_endMapLng = "报警结束地图经度";
    this.open_alarm_endMapLat = "报警结束地图纬度";
    this.open_alarm_begSpeed = "报警开始速度";
    this.open_alarm_endSpeed = "报警结束速度";
    this.open_alarm_begMileage = "报警开始里程";
    this.open_alarm_endMileage = "报警结束里程";
    this.open_video_cbId = "返回码";
    this.open_video_cbId_desc = "0表示成功,其他表示失败。";
    this.open_video_chnMask = "通道掩码";
    this.open_video_chnMask_desc = "1个文件同时存储多个通道的视频时有效,按位表示,第0位表示录像文件中有通道1的录像,以此类推。先判断chnMask,若chnMask>0,再解析chn。";
    this.open_device_chn = "设备通道";
    this.open_device_chn_desc = "0表示通道1,1表示通道2。";
    this.open_file_start_time_desc_1 = "单位秒,如3600=1点。";
    this.open_file_end_time_desc = "单位秒,如7200=2点,结束时间可能会大于86400,这个表示出现了跨天的情况。";
    this.open_video_year ="年";
    this.open_video_month ="月";
    this.open_video_day ="日";
    this.open_video_year_desc = "使用时加上2000。";
    this.open_video_fileName = "文件名称";
    this.open_video_lenUnit = "(单位byte)";
    this.open_file_location = "文件位置";
    this.open_video_recing = "是否正在录像";
    this.open_video_recing_desc = "0表示没有录像,1表示正在录像。";
    this.open_video_server_desc = "当查找存储服务器和下载服务器上录像时有效。";
    this.open_video_alarm_desc = "当为报警录像时有效。";
    this.open_download_video = "录像下载,返回下载文件";
    this.open_table_file = "文件";
    this.open_table_caption = "说明";
    this.open_table_code = "错误码";
    this.open_table_paramName = "参数名";
    this.open_table_paramType = "参数类型";
    this.open_table_desc = "描述";
    this.open_table_iseq = "是否必需";
    this.open_table_default = "默认值";
    this.open_init_flash = "视频插件文件";
    this.open_init_js = "视频插件调用所需JavaScript文件";
    this.open_init_cn = "视频插件中文语言包";
    this.open_init_en = "视频插件英文语言包";
    this.open_init_func = "视频插件的初始化方法";
    this.open_init_path = "视频插件路径";
    this.open_init_path_desc = "相对路径或者绝对路径。";
    this.open_init_div = "页面HTML标签id属性";
    this.open_init_div_desc = "通常为cmsv6flash。";
    this.open_init_width = "视频插件宽度";
    this.open_init_height = "视频插件高度";
    this.open_init_version = "视频插件版本号";
    this.open_init_param = "视频插件初始化参数";
    this.open_init_param_desc = "如allowFullscreen、allowScriptAccess等。";
    this.open_init_setLang = "设置视频插件的语言";
    this.open_init_langDef = "中文语言包:cn.xml";
    this.open_init_langPath = "视频插件语言包路径";
    this.open_init_setWindow = "设置视频插件的窗口数目";
    this.open_init_windowNum = "窗口数目(最多为36)";
    this.open_init_setServer = "设置视频插件的服务器";
    this.open_init_serverIp = "登录服务器ip";
    this.open_init_serverPort = "登录服务器端口";
    this.open_page_url_desc = "网页集成链接参数说明";
    this.open_page_url_account = "如果为空,则判断用户名和密码。";
    this.open_page_url_jsession = "如果会话号为空,则判断用户名和密码。";
    this.open_page_url_vehiIdno = "如果为空,则判断车牌号。";
    this.open_page_url_devIdno = "如果设备号为空,则判断车牌号。";
    this.open_page_url_chn = "预览视频的通道数目";
    this.open_page_url_chn_desc = "最大支持9个窗口播放";
    this.open_page_url_time = "视频预览时间,单位秒";
    this.open_page_url_lang = "语言设置";
    this.open_page_url_lang_desc = "en为英文,否则为中文。";
    this.open_video_setTitle = "设置视频窗口标题";
    this.open_video_index = "窗口下标";
    this.open_video_title = "窗口标题";
    this.open_video_play = "播放视频";
    this.open_video_stop = "停止播放视频";
    this.open_video_reset = "重置视频窗口";
    this.open_video_stram = "视频码流";
    this.open_video_stram_desc = "1表示子码流,0表示主码流。";
    this.open_video_setMinBufferTime = "设置视频最小缓冲时长";
    this.open_video_setMaxBufferTime = "设置视频最大缓冲时长";
    this.open_video_minBufferTime_desc = "主要用于调整视频延时,当缓存的数据达到最小缓冲时长时,则会进行播放";
    this.open_video_maxBufferTime_desc = "主要用于调整视频延时,当缓存的数据达到最大缓冲时长时,则进行快放";
    this.open_monitor_strat = "开始监听";
    this.open_monitor_stop = "停止监听";
    this.open_talkback_strat = "开始对讲";
    this.open_talkback_stop = "停止对讲";
    this.open_playback_server = "查询远程回放服务器(从登录服务器查询)";
    this.open_playback_send = "发送参数:";
    this.open_playback_location = "录像位置";
    this.open_playback_callback = "返回参数:";
    this.open_playback_start = "开始远程回放";
    this.open_playback_stop = "停止远程回放";
    this.open_playback_url = "远程回放url地址";
    this.open_playback_url_desc_1 = "根据录像查询获取到的录像信息拼装的url,";
    this.open_playback_url_desc_2 = "如http://127.0.0.1:6611/3/5?DownType=5&DevIDNO=10009&FILELOC=1<br/>&FILESVR=0&FILECHN=0&FILEBEG=1<br/>&FILEEND=100&PLAYIFRM=0&<br/>PLAYFILE=/record/H20121123-112931P3A1P0.avi<br/>&PLAYBEG=0&PLAYEND=0&PLAYCHN=0。";
    this.open_playback_url_desc_3 = "参数说明:FILELOC、FILESVR、FILECHN、PLAYFILE、FILEBEG<br/>和FILEEND是分别是文件搜索时返回的参数<br/>loc、svr、chn、file、beg和end,直接取对应的参数。";
    this.open_playback_url_desc_4 = "PLAYBEG表示播放起始的偏移,单位毫秒,相当于文件的开始时间算,0表示从文件开始位置进行播放。";
    this.open_playback_url_desc_5 = "PLAYEND表示播放结束的偏移,单位毫秒, 相当文件开始时间算,不得大于文件的总时长。";
    this.open_playback_url_desc_6 = "PLAYIFRM表示只播放I帧(请填为0)。";
    this.open_playback_url_desc_7 = "PLAYCHN表示播放那个通道的录像,文件存在多个通道的录像时使用,如果不存在多个通道,则直接使用0。";
    this.open_playback_url_desc_8 = "DevIDNO表示当播放设备上的文件时,为设备编号;当播放服务器上的文件时,为车辆号。";
    this.open_init_video_finish = "视频插件是否加载完成";
    this.open_init_video_flash = "初始化flash";
    this.open_init_setWindow_1 = "先将全部窗口创建好";
    this.open_init_setWindow_2 = "再配置当前的窗口数目";
    this.open_init_video_call = "视频插件要初始化完成后才能调用";
    this.open_talkback_call = "返回 0成功,1表示正在对讲,2表示没有mic,3表示禁用了mic。";
    this.open_server_deviceIp = "设备访问IP";
    this.open_server_devicePort = "设备访问端口";
    this.open_server_clientIp = "客户端访问IP";
    this.open_server_clientPort = "客户端访问端口";
    this.open_server_clientOtherPort = "客户端访问的更多端口";
    this.open_server_lanIp = "局域网IP";
    this.open_device_status_desc = "设备状态说明";
    this.open_device_alarmType_desc = "报警类型说明";
    this.open_device_alarmParam_desc = "报警参数说明";
    this.open_device_alarmStatus_desc = "报警状态说明";
    this.open_video_exp_1 = "传入会话号和设备号";
    this.open_video_exp_2 = "传入会话号和车牌号";
    this.open_video_exp_3 = "传入用户名、密码和设备号";
    this.open_video_exp_4 = "传入用户名、密码和车牌号";
    this.open_video_exp_5 = "传入视频自动关闭时间";
    this.open_video_exp_6 = "传入最大预览窗口数目";
    this.open_video_exp_7 = "传入视频设备通道";
    this.open_vehiIdno_moreTip = "可以是多个,以','分割。";
    this.open_query_pagin_null = "如果为空,则不分页。";
    this.open_query_devIdno_null = "如果是用设备号查询,则为空。";
    this.open_map_example = "地图示例";
    this.open_map_param_desc = "参数说明";
    this.open_vehicle_icon = "车辆图标";
    this.open_vehicle_company = "所属公司或者车队";
    this.open_vehicle_devices = "设备列表";
    this.open_vehicle_devices_desc = "以下是设备信息";
    this.open_vehicle_devCompany = "设备所属公司";
    this.open_vehicle_IO_num = "IO数目";
    this.open_vehicle_IO_name = "IO名称";
    this.open_vehicle_chn_num = "通道数目";
    this.open_vehicle_chn_name = "通道名称";
    this.open_vehicle_temp_num = "温度传感器数目";
    this.open_vehicle_temp_name = "温度传感器名称";
    this.open_vehicle_name_desc = "以','分隔";
    this.open_vehicle_module = "外设参数";
    this.open_vehicle_module_desc = "按位表示,每位表示一种外设,第一位为支持视频,第二位为油路控制,第三位为电路控制,第四位为tts语音,第五位为数字对讲,第六位为支持抓拍,第七位为支持监听,第八位为油量传感器,第九位为支持对讲,第十位为ODB外设。";
    this.open_vehicle_SIM = "SIM卡号";
    this.open_vehicle_devStatus = "设备状态";
    this.open_account_null_desc = "如果用户名和密码为空,则判断后台配置的用户名和密码。";
    this.open_LongitudeExample = "例如:113231258,真实值为113.231258";
    this.open_LatitudeExample = "例如:39231258,真实值为39.231258";
    this.open_companyName = "公司名称";
    this.open_companyName_desc = "如果不存在则添加";
    this.open_account = "主账号";
    
    //移动开发
    this.open_mobile_android = "Android Api";
    this.open_mobile_ios = "IOS Api";
    //windows开发
    this.open_windows_sdk = "sdk动态链接库";
    this.open_wsdk_userLoginOrOut = "用户登录注销";
    this.open_wsdk_userLogin = "用户登录";
    this.open_wsdk_userLogout = "用户注销";
    this.open_wsdk_vehicleInfo = "车辆信息查询";
    this.open_wsdk_getDevIdnoByVehiIdno = "获取车辆设备号";
    this.open_wsdk_getDevOnlineStatus = "获取设备在线状态";
    this.open_wsdk_getDeviceStatus = "获取设备状态(gps状态)";
    this.open_wsdk_getDeviceTrack = "获取设备历史轨迹(分页)";
    this.open_wsdk_getDeviceAlarmInfo = "获取设备报警数据(分页)";
    this.open_wsdk_videoOperate = "视频相关业务";
    this.open_wsdk_initVideo = "初始化视频插件";
    this.open_wsdk_realtimeVideo_html = "实时视频(网页集成)";
    this.open_wsdk_realtimeVideo_js = "实时视频(JavaScript)";
    this.open_wsdk_monitor = "监听";
    this.open_wsdk_talkback = "对讲";
    this.open_wsdk_queryRecording = "录像查询";
    this.open_wsdk_downloadRecording = "录像下载";
    this.open_wsdk_remotePlayback = "远程回放";
    this.open_wsdk_capture = "抓拍";
    this.open_wsdk_vehicleControlOperate = "车辆控制业务";
    this.open_wsdk_getUserServer = "获取用户服务器";
    this.open_wsdk_vehicleControl = "车辆控制";
    this.open_wsdk_tts = "TTS";
    this.open_wsdk_deviceManagement = "设备管理";
    this.open_wsdk_addDevice = "新增设备";
    this.open_wsdk_addVehicle = "新增车辆";
    this.open_wsdk_delDevice = "删除设备";
    this.open_wsdk_delVehicle = "删除车辆";
 
    //ocx
    this.open_windows_ocx = "ocx控件";
    
    //地图部分
    this.mapBaidu = "百度地图";
    this.mapGoogle = "谷歌地图";
    this.mapMapInfo = "MapInfo地图";
    this.mapArcGis = "ArcGis";
    this.mapMapBar = "四维地图";
    this.loginError = "登陆失败!";
    this.jsessionError = "会话号不存在!";
    this.deviceNoExist = "找不到车辆信息!";
    this.vehicleNotOperate = "没有车辆或者设备操作权限!";
    this.flashVehicleError = "刷新车辆失败!";
    this.labelTime = "时间:";
    this.labelSpeed = "速度:";
    this.monitor_labelLiCheng = "里程:";
    this.labelFuel = "油量:";
    this.monitor_labelDriver = "司机:";
    this.monitor_labelNormal = "状态:";
    this.online = "在线";
    this.offline = "离线";
    this.alarm_oil_unit = "升";
    this.km = "公里";
    this.KmPerHour = "公里/时";
    this.north = "北";
    this.northEast = "东北";
    this.east = "东";
    this.southEast = "东南";
    this.south = "南";
    this.southWest = "西南";
    this.west = "西";
    this.northWest = "西北";
    
    //错误代码
    this.errClientNotExist = "用户名不存在";  //1
    this.errPassword = "密码错误";   //2
    this.errUserDeactivated = "用户已停用";  //3
    this.errUserExpired = "用户已过期";  //4
    this.errSessionNotExist = "会话不存在";  //5
    this.errException = "系统出现异常";  //6
    this.errRequireParam = "请求参数不正确";  //7
    this.errorNotOperate = "没有车辆或者设备的操作权限";  //8
    this.errQueryTimeRange = "开始时间不得大于结束时间";  //9
    this.errQueryTimeThanRange = "查询时间超过范围";  //10
    this.errDownloadTaskExist = "录像下载任务已存在";  //11
    this.errDeviceAmountReachCeiling = "设备管理数目限制(已达到最大添加数目)";  //14
    this.errDeviceExsist = "设备已存在";  //15
    this.errVehicleExsist = "车辆已存在";  //16
    this.errDeviceUsed = "设备已被使用";  //17
 
    this.errAccountExsist = "账号已存在";  //12
    this.errAccountForb = "无操作权限";  //13
    this.errVehicleNotExsist = "车辆不存在";//18
    this.errDeviceNotExsist = "设备不存在";//19
    
    this.factoryType = "厂家类型";
    this.line1 = "0 表示未知 ,17表示GM,20表示HD";
    this.line2 = "21 表示FZE ,23表示HB,24表示BSJ";
    this.line3 = "26表示HK ,28表示YX,29表示RM";
//    this.unuseDevIdno = "不设置设备号";
    this.installDevIdno = "安装设备";
    this.changeDevType = "更改设备类型";
    this.devMp4Info = "设备录像查询";
    this.storeMp4 = "存储服务器录像查询";
    
    this.picturePath = "图片路径";
    this.deviation = "偏移量";
    this.devBeyongCom = "设备不属于当前公司";
    this.errorValidServer = "设备注册数目不匹配,请检查设备数目是否超过注册数目!";
    
    this.requestType = "请求类型";
    this.realTimeVideo_live_address = "实时视频(H5直播地址)";
    this.realTimeVideo_web_integration = "实时视频(H5网页集成)"; 
    this.realTimeVideo = "请求类型(1表示实时视频)_设备编号_通道号_码流类型(0主码流1子码流)";
    this.streamMediaIP = "流媒体服务器客户端Ip";
    this.streamMediaPort = "流媒体服务器客户服务端口";
    this.for_example_ex = "例如:"; 
    this.Send_request_to_streaming_server = "向流媒体服务器发出请求";
    this.request_type = "请求类型_设备编号_通道号_码流类型";
    this.video_live_explain = "在H5的&lt;video&gt;标签中,加入视频请求";
    
    this.open_area = "区域信息";
    this.open_user_area = "用户区域信息";
    this.open_area_id = "区域ID";
    this.open_area_markName = "标记名称";
    this.open_area_mapType = "地图类型  0谷歌 3百度 4高德";
    this.open_area_parentId = "区域父级ID";
    this.open_area_name = "区域名称";
    this.open_area_type = "区域类型  0普通区域  1 行政区域";
    this.open_area_markType = "区域类型  1;点 2;矩形 3;多边形 4;路线 10;圆";
    this.open_area_share = "区域共享  0;不共享 1;分组共享 2;全部共享";
    this.open_area_userId = "创建区域用户id";
    this.open_area_beyong = "公司id(所属公司)";
    this.open_area_locationType = "地理类型";
    this.open_area_locationTypeTip = "2;村庄 3;工厂 4;工地 5;仓库 6;码头 7;物流园 8;收费站 9;跟踪点 10;工作区域 11;巡查区域 12;其它";
    this.open_track_distance = "距离";
    this.open_track_distance_desc = "单位: KM。";
    //10点57分
    this.open_gps_position = "地理位置";
    this.open_gps_position_desc = "解析后的地理位置 或者 (经过转换后的经度, 经过转换后的纬度)";
    this.open_geoaddress = "是否解析地理位置";
    this.open_geoaddress_moreTip = "1表示提供解析地理位置服务";
    this.open_geoaddress_url_moreTip = "如果不传则不解析地理位置";
    this.open_gps_position_alarm_start = "报警开始地理位置";
    this.open_gps_position_alarm_end = "结束开始地理位置";
    this.open_gps_position_alarm_start_desc = "解析后的地理位置 或者(报警开始地图经度, 报警开始地图纬度)";
    this.open_gps_position_alarm_end_desc = "解析后的地理位置 或者(报警结束地图经度, 报警结束地图纬度)";
    this.open_gps_endTime = "判断结束时间";
    this.open_gps_endTime_moreTip = "1表示同时查询结束时间处于这个区间的数据 ";
    this.open_gps_endTime_url_moreTip = "如果不传则没有则不进行结束时间判断";
    this.open_capture_get = "获取抓拍图片";
    this.open_type_value = "请填为3";
    this.open_picturePath_desc = "抓拍返回路径";
    this.open_deviation_desc = "抓拍返回偏移量";
    this.open_file_size_desc = "抓拍返回大小";
    this.open_gps_vehicle = "车辆信息";
    this.open_gps_company = "组织信息";
    this.open_gps_company_id = "组织ID";
    this.open_gps_company_name = "组织名称";
    this.open_gps_company_parent = "上级组织ID";    
    this.open_control_type_desc = "1表示断开油路;2表示恢复油路;3表示关闭电源;4表示打开电源;5表示重启设备;6表示恢复出厂设置;7表示休眠;8表示唤醒;9表示开启设备录像(高两字节为录像的通道号,低两字节为指令,如通道1的发送指令为  Number(0<<16) + Number(9));10表示关闭设备录像(高两字节为录像的通道号,低两字节为指令);" +
            "11表示客户端开始对此通道进行轮询(高两字节为通道号,低两字节为指令) 12表示客户端停止对此通道进行轮询(高两字节为通道号,低两字节为指令)。13表示启动记录日志功能(高两个字节大于0表示写日志,0表示不写日志)。" +
            "14表示格式化硬盘(高位表示硬盘号,硬盘号从0开始,低位表示命令号,如硬盘1的发送指令为  Number(0<<16) + Number(14));15表示里程清零;" +
            "16表示正转翻转(高两字节为通道号,低两字节为指令)。17表示反转翻转(高两字节为通道号,低两字节为指令)。" +
            "18表示清除报警。19表示切换摄像头。20表示开始录音(高两字节为录音的通道号,低两字节为指令)。" +
            "21表示停止录音(高两字节为录音的通道号,低两字节为指令)。22表示wifi下载结束。" +
            "23表示设备拍照。24表示设备录像(高位表示录像时长)";
    this.open_getUserVehicleAlarm = "获取设备实时报警";
    this.open_status_alarmType = "源报警的类型";
    this.open_status_alarmStart = "开始报警的类型";
    this.open_status_alarmStart_desc = "报警有开始和结束报警类型时使用";
    this.open_status_alarmTime = "源报警的时间";
    this.open_status_alarm_time = "报警时间";
    this.open_status_up_down = "公交使用,0上行,1下行";
    this.open_status_line_way = "公交使用,线路号";
    this.open_status_line_point = "公交使用,站点标志  0-站点 1-站场";
    this.open_status_line_point_index = "公交使用,站点索引  ";
    this.open_status_line_point_status = "公交使用,站点状态    0-本站 1-下一站";
    this.open_gps_position_sd = "行驶记录仪速度";
    this.open_login_client = "登陆到后台接口";
    this.open_login_client_param = "account表示登陆账号; password表示账号密码; clientLogin表示是否包含定位,视频,轨迹回放等功能(2表示包含)";
    this.open_seven_char = "(7)";
    this.open_video_event_callback = "视频回调事件";
    this.open_video_event_callback_caption = "在当前视频js对应文件,新增函数:  function onTtxVideoMsg(index, type){}"
    this.open_video_event_type = "事件类型";
    this.open_video_event_type_one = "1.窗口事件:select:选择窗口,full:全屏,norm:退出全屏";
    this.open_video_event_type_two = "2.视频播放事件: start:开始播放 paus:暂停,stop:停止 play:暂停或停止后重新播放,sound:开启声音,silent:静音,PicSave:截图";
    this.open_video_event_type_three = "3.对讲事件:startRecive,uploadRecive,loadRecive: 开启对讲,upload:对讲讲话,uploadfull:对讲讲话结束,stopTalk:关闭对讲,reciveStreamStop,reciveNetError,reciveStreamNotFound:对讲异常(网络异常等),uploadNetClosed,uploadNetError:连接异常";
    this.open_video_event_type_four = "4.监听事件:startListen:开始监听,stopListen:停止监听,listenNetError:网络异常,playListen:监听中,loadListen,listenStreamNotFound,listenStreamStop:等待请求监听";
    this.realTimeVideo_web_rtsp = "实时视频RTSP";
    this.URL_param_infos = "URL请求参数说明";
    this.base64_param = "p1,p2,p3,p4,p5,p6,p7  组成字符串进行base64编码结果";
    this.service_ip = "服务器ip"; 
    this.service_port = "服务器端口(流媒体端口号默认是6604)"; 
    this.URL_param3_detail = "URL请求param3组成参数";
    this.URL_param3_session  = "会话编号(为客户端的会话信息,暂时可以为空)";
    this.URL_param3_type  = "请求类型(请填写3)";
    this.URL_param3_devIdno  = "设备编号";
    this.URL_param3_ChnIndex  = "通道编号(从0开始)";
    this.URL_param3_byteType  = "码流类型 (1表示子码流)";
    this.URL_param3_rec  = "录像标识(暂时无效,请填写0)";
    this.URL_param3_bl  = "保留标识(暂时无效,请填写0)";
    this.URL_param3_creat = "p1,p2,p3,p4,p5,p6,p7    按顺序串接,进行base64编码得到param3 <br\> 说明:http://base64.xpcha.com/ 提供base64解码和编码";
    this.rtsp_param = "请求param3参数组成";
    this.rtsp_param_info = "26E9FC9E88EA496E9FA8F56B40B84393,3,55018,0,1,0,0,0";
    this.rtsp_param_info_detail = "会话号为26E9FC9E88EA496E9FA8F56B40B84393(如果服务器未校验会话话,可以将会话号传空),请求类型为3,设备编号为55018,通道0(表示通道1),码流1(子码流),录像标识0,保留标识0";
    this.rtsp_param_base = "base64编码结果";
    this.rtsp_param_info_base64 = "MjZFOUZDOUU4OEVBNDk2RTlGQThGNTZCNDBCODQzOTMsMyw1NTAxOCwwLDEsMCwwLDA=";
    this.rtsp_param_url = "最终请求示例";
    this.open_ptz_text_desc = "0左;1右;2上;3下;4左上;5右上;6左下;7右下;8焦距变小;9焦距变大;<br\>10光圈变小;11光圈变大;12焦点后调(倍数);13焦点前调;14灯光;16雨刷;18自动巡航;19停止;21调用;22设置;23删除 ";
    this.open_ptz_speed_desc = "速度,当为方向移动时,速度有效,范围0-255";
    this.open_ptz_param_desc = "当为预置位操作时,Param有效,表示预置位的序号(21调用;22设置;23删除时传入)";
    this.errorNetServer = "网络连接异常";
    this.open_req_see_no = "不包含视频界面";
    this.open_req_see_yes = "包含视频等界面";
    
    this.open_down_tast = "获取分段下载任务";
    this.down_status = "下载状态";
    this.down_status_tips = "1未下载,2下载中,3下载失败,4已下载";
    this.down_fail = "下载失败时,表示失败原因";
    this.down_userId = "用户ID,提交下载对应的用户ID,即当前jsession登录用户id";
    this.dowm_beginTime = "下载开始时间";
    this.down_endTime = "下载结束时间";
    this.down_path = "下载路径";
    this.down_serviceNumber = "存储服务器编号";
    this.down_type = "录像类型  0表示常规,1表示报警"
    this.down_file_type = "文件类型 1图片文件,2表示录像";
    this.down_start_time = "任务生成时间";
    this.monitorOpen = "流量统计开关 0-关闭,1-开启";
    this.settlementDay = "月结日";
    this.monthLimit = "月流量限制(MB)";
    this.monthRemindOpen = "月流量提醒 0-不提醒 1-提醒";
    this.monthRemind = "每月流量提醒(百分比),20%即20";
    this.dayLimit = "日流量限制(MB)";
    this.dayRemindOpen = "日流量提醒 0-不提醒 1-提醒";
    this.dayRemind = "每天流量提醒(百分比),20%即20";
    this.overLimitOpen = "月流量超限:0超限后忽略,1表示超限后禁用媒体业务";
    this.userIds = "查询用户id(多个用户ID使用英文,分割)";
    this.type     = "用户操作类型(1;视频预览(通道)2;音频监听(通道)3;双向对讲 4;图片抓拍5;录像搜索6;    录像下载12;远程回放)";
    this.user_name = "用户姓名";
    this.totalTime = "总时长(秒)";
    this.msec  = "(毫秒)";
    this.flowUsed = "使用流量(单位M)";
    this.vehicle_type = "车辆类型:1清洗车,2洒水车,3扫地车4 警员 5 调度员";
    this.alarmSourceType = "报警来源 0设备 1平台";
    this.mediatype = "媒体类型 0:音视频,1:音频,2:视频,3:视频或者音视频";
    this.storetype = "存储类型 0:主或者灾备存储器,1:主存储器,2:灾备存储器";
    this.bittype = "码流类型 -1:主或子码流,0:主码流,1:子码流";
    this.arlamtype = "报警标识1,二进制对应的十进制整数,二进制位数报警<br>  1紧急报警2超速报警3疲劳驾驶4预警5GNSS模块发生故障<br>" +
                    "6GNSS模块未接或被剪断7GNSS天线短路8终端主电源欠压<br>"+"9终端主电源掉电10终端LCD或显示器故障11TTS模块故障<br>" +
                    "12摄像头故障19当天累计驾驶超时20超时停车21进出区域<br>" +"22进出线路23路线行驶时间不足/过长24路线偏离报警25车辆VSS故障<br>" +
                    "26车辆油量异常27车辆被盗28车辆非法点火29车辆非法位移30碰撞侧翻报警";
    this.arlamtype2 = "报警标识2,二进制对应的十进制整数,二进制位数报警<br>  1视频信号丢失报警2视频信号遮挡报警3存储单元故障报警<br>" +
                        "4其他视频设备故障报警5客车超员报警6异常驾驶行为报警<br>" +"7特殊报警录像达到存储阀值报警";
    this.filetype = "0-普通 1-报警触发";
    this.vedioOrVoiceType = "1-视频  2-音频";
    this.ruleName = "规则名称";
    this.linkage_Alarm = "固定传13";
    this.linkage_Alarm_param = "参数格式:\"p1,p2,p3,p4,p5,p6\"<br>  p1是否拍照 1是 0 否; p2 允许拍照时设置拍照通道(支持16通道) 例如: 1010000000000000  表示开启通道1号,3号;<br>" +
    "p3录像时长(0-1800秒); p4设置录像通道(支持16通道) 例如: 1010000000000000  表示开启通道1号,3号;<br>" +
        "p5电话号码,p6邮箱;<br>例子:1,1010000000000000,10,1010000000000000,13813813813,4917@qq.com";
    this.linkage_Alarm_text = "提示信息";
    this.ruleId = "规则id"
    this.rule_authorize_device = "设备号未分配该规则的(建议先执行-查询规则设备关联关系-避免重复分配出现异常)多个使用,分割";
    this.rule_device_id = "规则设备关联关系id(建议先执行-查询规则设备关联关系-得到相应id), 多个使用逗号分割";
    this.protocol_type = "1:部标(2011) 2:部标(北斗) 3:部标1078(视频)";
    this.storage_location = "存储位置";
    this.fileTime = "文件时长";
    this.fileSize = "文件大小";
    this.fileNumber = "文件数目";
    this.bit  = "(字节)";
    this.service_number = "服务器编号";
    this.encode = "编码格式 0-JPEG 1-TIF";
    this.fileOffset = "文件偏移位置";
    this.file_date = "文件时间";
    this.gps_status = "GPS状态信息";
    this.vedio_type = "类型 1-音视频 2-音频 3-视频";
    this.src_status = "录像状态 0-正在录像 1-录像完成 2-非正常结束";
    this.ruleType = "规则类型     13-报警联动规则";
    this.flowInfo = "流量配置信息";
    this.flowUsed = "流量使用信息";
    this.dayFlowUse = "当日使用流量";
    this.dayFlowVedioUse = "当日视频使用流量";
     this.dayFlowGPSUse = "当日GPS使用流量";
     this.dayFlowOtherUse = "当日其它业务使用流量";
    this.monthFlowUse = "当月使用流量";
     this.monthFlowVedioUse = "当月视频使用流量";
    this.monthFlowGPSUse = "当月GPS使用流量";
    this.monthFlowOtherUse = "当月其它业务使用流量";
     this.update_time = "更新时间";
    this.second = "秒";
    this.file_management = "文件相关业务";
    this.rule_management = "规则相关业务";
    this.open_down_tast_del  = "删除设备待下载分段任务";
    this.userMedia_query = "用户媒体流量查询";
    this.resource_catalog_summary = "查询资源目录汇总";
    this.resource_catalog_detail = "查询资源目录明细";
    this.picture_query = "图片查询";
    this.voice_query = "音视频查询";
    this.save_rule = "新建联动报警";
    this.query_rule = "查询联动报警";
    this.edit_rule = "修改联动报警";
    this.del_rule = "删除联动报警";
    this.save_rule_dev_rel = "设备规则设备关联关系";
    this.query_rule_dev_rel = "查询规则设备关联关系";
    this.del_rule_dev_rel = "删除规则设备关联关系";
    this.device_edit = "修改设备";
    this.flow_management = "流量相关业务";
    this.get_flow_info = "获取流量信息";
    this.save_flow_config = "保存流量配置";
    this.server_error = "( 返回参数包含: \"cmsserver\":1 )";
    this.userNOpermit = "用户无权限";
    this.error_sql = "操作数据库错误";
    this.info_not_exist = "信息不存在";
    this.unknow_error = "未知错误";
    this.name_exist = "名称已经被使用";
    this.no_response_dev = "没有收到设备的回馈信息";
    this.device_offline = "设备不在线";
    this.device_connect_error = "设备连接中断";
    this.unknow_storage = "未定义存储路径";
    this.rule_name_exist = "规则名称已存在";
    this.rule_name_noexist = "规则不存在";
    this.device_1078_info = "非1078设备填0";
    this.device_1078_return = "1078设备返回";
    this.user_session_exist = "回话号已存在";
    this.user_Id = "用户ID,即当前userSession登录用户id";
    this.uer_bind = "用户绑定";
    this.uer_unbind = "用户取绑";
    this.driver_info = "是否查询司机信息(姓名+工号)";
    this.driver_info_tip = "1: 查询; 其他或者不传: 不查询"
    this.driver_name = "司机名称";
    this.driver_job = "司机工号";
    this.mapRectMyIdno = "找当前的终端";
    this.mapRectHisIdno = "找历史的终端";
    this.mapAutonavi = "高德地图";
    this.monitor_labelPosition = "位置:";
    this.real_time_vedio = "实时录像";
    this.real_time_record = "录像时长  (范围0到300, 0表示停止)";
    this.real_time_vedio_chn_desc = "通道从0开始 最大支持15.(0表示通道1,1表示通道2)";
    this.real_time_vedio_label = "标签(径卫内部标识)";
}