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
| 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;
| }
|
| }
|
|