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("OTBIN", "搬运中"), CALL_BACK_EVENT_END("END", "放箱完成"), ; CallBackEvent( String event, String desc) { this.event = event; this.desc = desc; } public String event; public String desc; }