dashboard
repositories
filestore
activity
search
login
drone
/
drone-java
无人机java后台代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
参数验证
aix
2024-07-30
b2d73b4c8e85900973bb2d80e0883640eeadf804
[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;
}
}