1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.zy.asrs.enums;
|
| /**
| * 通用站点
| * @author Ryan
| * @date 2025/12/6 13:56
| * @return null
| */
| public enum CommonStation {
|
| //通用类型
| COMMON_STATION_Y("Y", "是"),
| //通用
| COMMON_STATION_N("N", "否");
|
| public String type;
|
| public String desc;
|
| CommonStation(String type, String desc) {
| this.type = type;
| this.desc = desc;
| }
| }
|
|