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
| package com.gkhy.hazmat.common.enums;
|
| /**
| * 危化品状态
| *
| */
| public enum WarehouseRecordEnum
| {
| BATCHIMPORT(0, "批量导入"),
| INUSE(1, "取用"),
| BACK(2, "归还"),
| DISCARD(3, "标签作废"),
| SOLD(4,"销售"),
| TRANSFERIN(5,"相忌转入"),
| TRANSFEROUT(6,"相忌转出");
|
| private final Integer code;
| private final String info;
|
| WarehouseRecordEnum(Integer code, String info)
| {
| this.code = code;
| this.info = info;
| }
|
| public Integer getCode()
| {
| return code;
| }
|
| public String getInfo()
| {
| return info;
| }
| }
|
|