Consts.java
516 Bytes
package com.bsth.vehicle.directive;
import com.bsth.util.Tools;
public class Consts {
static Tools tools = new Tools("application.properties");
/**
* 调度指令 -多营运状态 [0][0]上行营运 [0][1]上行非营运 [1][0]下行营运 [1][1]下行非营运
*/
public static final int[][] SERVICE_STATE = { { 0, 0x02000000 }, { 0x10000000, 0x12000000 } };
/**
* 消息下发地址
*/
public static final String SEND_DIRECTIVE_URL = tools.getValue("http.send.directive");
}