futian.liu
2023-12-21 6d356442b2209d17869a4156356ecfa3a8321e74
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.consum.base.core.type;
 
/**
 * fff
 *
 * @author asus
 * @version 2023/12/21 15:10
 **/
public enum TransferStatesType {
 
    /**
     * 待出库
     */
    OUT_PENDING(0, "待出库"),
    /**
     * 待接收
     */
    RECEIVE_ING(1, "待接收"),
    /**
     * 已入库
     */
    SUCCESS(2, "已入库"),
    /**
     * 已撤销
     */
    CANCEL(4, "已撤销");
 
    private Integer value;
 
    private String desc;
 
    TransferStatesType(Integer value, String desc) {
        this.value = value;
        this.desc = desc;
    }
 
    public Integer getValue() {
        return value;
    }
 
    public void setValue(Integer value) {
        this.value = value;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
}