dashboard
repositories
filestore
activity
search
login
drone
/
drone-java
无人机java后台代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
时间分析任务下发
rain
2024-08-17
61b91c80f3d7526eb3caa04e6e781e591f48ec93
[drone/drone-java.git]
/
src
/
main
/
java
/
com
/
dji
/
sample
/
speak
/
model
/
enums
/
PsdkModelEnum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dji.sample.speak.model.enums;
import lombok.Getter;
@Getter
public enum PsdkModelEnum {
SINGLE(0),
CIRCLE(1);
int val;
PsdkModelEnum(int val) {
this.val = val;
}
}