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; } }