package com.vincent.rsf.server.manager.enums; /** * @author Ryan * @date 2025/8/28 * @description: RCS库位状态类型 * @version 1.0 */ public enum RcsLocStsType { //空板 LOC_STS_TYPE_D("15", "IDLE"), //在库 LOC_STS_TYPE_F("16","STOCK"), //禁用 LOC_STS_TYPE_X("19","DISABLED"), //入库预约 LOC_STS_TYPE_S("17","PAKIN"), //出库预约 LOC_STS_TYPE_R("18", "PAKOUT"), ; public String type; public String desc; RcsLocStsType(String type, String desc) { this.type = type; this.desc = desc; } }