Consts.java 296 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 package com.bsth.data.directive; public class Consts { /** * 调度指令 -多营运状态 [0][0]上行营运 [0][1]上行非营运 [1][0]下行营运 [1][1]下行非营运 */ public static final int[][] SERVICE_STATE = { { 0, 0x02000000 }, { 0x10000000, 0x12000000 } }; }