1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| package com.ruoyi.integration.drainage.model.enu;
|
| /**
| * 站点类型
| * @author zhibing.pu
| * @Date 2025/1/21 12:00
| */
| public enum StationTypeEnum {
| PUBLIC(1, "公共"),
| PERSONAGE(50, "个人"),
| BUS_SPECIFIC(100, "公交(专用)"),
| SANITATION_SPECIFIC(101, "环卫(专用)"),
| LOGISTICS_SPECIFIC(102, "物流(专用)"),
| TEXT_SPECIFIC(103, "出租车(专用)"),
| PERIODIC_LEASE(104, "分时租赁(专用)"),
| CELL_SHARING(105, "小区共享(专用)"),
| DEPARTMENT(106, "单位(专用)"),
| PRIVATE_SHARED_PILE(107, "私人共享桩(专用)"),
| OTHER(255, "其他")
| ;
|
| private Integer type;
| private String note;
|
| StationTypeEnum(Integer type, String note) {
| this.type = type;
| this.note = note;
| }
|
| public Integer getType() {
| return type;
| }
|
| public void setType(Integer type) {
| this.type = type;
| }
|
| public String getNote() {
| return note;
| }
|
| public void setNote(String note) {
| this.note = note;
| }
| }
|
|