[6.5.1_exam]合并Taxi考试到主分支
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.mogo.eagle.core.data.takeover
|
||||
|
||||
import androidx.annotation.IntDef
|
||||
|
||||
const val MANUAL_CONTROL = 0
|
||||
const val OVER_TAKE = 1
|
||||
const val LINE_TO_LEFT = 2
|
||||
const val LINE_TO_RIGHT = 3
|
||||
const val PULL_OVER = 4
|
||||
const val EMERGENCY_STOP = 5
|
||||
const val TAKE_OVER_REQUEST = 6
|
||||
|
||||
@IntDef(
|
||||
MANUAL_CONTROL,
|
||||
OVER_TAKE,
|
||||
LINE_TO_LEFT,
|
||||
LINE_TO_RIGHT,
|
||||
PULL_OVER,
|
||||
EMERGENCY_STOP,
|
||||
TAKE_OVER_REQUEST
|
||||
)
|
||||
@Retention(AnnotationRetention.SOURCE)
|
||||
annotation class TakeOverAnnotation(vararg val type: Int) {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user