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.vincent.rsf.server.api.entity.enums;
|
| /**
| * @author Ryan
| * @date 2025/9/4
| * @description: 回调事件
| * @version 1.0
| */
| public enum CallBackEvent {
| /**任务回调事件*/
| CALL_BACK_EVENT_START("START", "取箱完成"),
| CALL_BACK_EVENT_OBIT("OBIT", "搬运中"),
| CALL_BACK_EVENT_END("END", "放箱完成"),
| ;
|
| CallBackEvent( String event, String desc) {
| this.event = event;
| this.desc = desc;
| }
|
| public String event;
|
| public String desc;
| }
|
|