【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-05 8a09f655eace34e9c90bbfc711eedb7a69e4e068
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
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_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_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_control_type_desc = "1表示断开油路;2表示恢复油路;3表示关闭电源;4表示打开电源;5表示重启设备;6表示恢复出厂设置;7表示休眠;8表示唤醒;9表示开启设备录像(高两字节为录像的通道号,低两字节为指令,如通道1的发送指令为  Number(0<<16) + Number(9));10表示关闭设备录像(高两字节为录像的通道号,低两字节为指令);14表示格式化硬盘(高位表示硬盘号,硬盘号从0开始,低位表示命令号,如硬盘1的发送指令为  Number(0<<16) + Number(14));15表示里程清零;18表示清除报警。";
    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_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 = "存储服务器录像查询";
    
    
    
}