Blame view

zteits-job/src/main/java/com/zteits/job/constant/EqpConstant.java 972 Bytes
83f7336e   zhaowg   增加方格地磁状态获取空闲车位数据推送
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
  package com.zteits.job.constant;
  
  public class EqpConstant {
  	/**设备类型 字典表[TD_P_EQP_EQP_TYPE] 1-地磁;2-视频桩;3-地锁等*/
  	public static class EQP_TYPE{
  		/**1-地磁;*/
  		public static final int GEO = 1;
  		/**2-视频桩;*/
  		public static final int VIDEO_PILE = 2;
  		/**3-地锁*/
  		public static final int GROUND_LOCK = 3;
  
  		/**9-PDA*/
  		public static final int PDA = 9;
  
  		/**10-道闸*/
  		public static final int DZ = 10;
  	}
  	
  	/**是否在线:0-在线;1-离线   2-故障*/
  	public static class IS_ONLINE{
  		public static final String ON_LINE = "0";
  		public static final String OFF_LINE = "1";
  		public static final String EXCEPTION = "2";
  	}
  	/**(2:故障  1:正常  0:未启用)*/
  	public static class PDA_STATUS{
  		public static final String NORMAL = "1";
  	}
  	//设备使用类型:10-调试中;20-商用中
  	public static class USED_TYPE{
  		public static final int BUSINESS = 20;
  		public static final int DEBUG = 10;
  	}
  }