package safeluck.drive.evaluation.DB;
|
|
import org.jetbrains.annotations.NotNull;
|
|
/**
|
* MyApplication2
|
* Created by lzw on 2019/11/26. 12:01:53
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class Constant {
|
public static final String CRITERIAFOR_I_JSON = "criteria_I.json";
|
public static final String CRITERIAFOR_II_JSON = "criteria_II.json";
|
public static final String CRITERIAFOR_III_JSON = "criteria_III.json";
|
public static final String RTK_CONFIG_UPDATE_JSON = "RTK_CONFIG_UPDATE_JSON";
|
public static final String RTK_CONFIG_PHONE = "RTK_CONFIG_PHONE";
|
public static final String RTK_CONFIG_IMEI = "RTK_CONFIG_IMEI";
|
public static final String RTK_CONFIG_SN = "sn";
|
@NotNull
|
public static final String EXAM_STATUS_TYPE = "exam_status_type";
|
public static final int EXAM_MAP_TYPE_REVERSE = 1;
|
public static final int EXAM_MAP_TYPE_RAMP = 2;
|
public static final int EXAM_MAP_TYPE_PARK = 3;
|
public static final int EXAM_MAP_TYPE_CURVE = 4;
|
public static final int EXAM_MAP_TYPE_ANGLE = 5;
|
public static final int FINISH_ITEM = 0;//该项场地考试结束(出场地)
|
public static final int BEGIN_ITEM = 1;//该项考试开始进入场地
|
public static final int EXAM_STATUS_MAP_ID = -1;
|
}
|