1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.zy.acs.hex.enums;
|
| public enum DirectionType {
|
| DOWN("下行"),
| UP("上行"),
| ;
|
| private String text;
|
| DirectionType(String text) {
| this.text = text;
| }
|
| public String getText() {
| return text;
| }
|
| public void setText(String text) {
| this.text = text;
| }
| }
|
|