futian.liu
2023-12-13 726a0dae13c9166ba31e4d504440334c8db26fd5
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
package com.consum.base.core.type;
 
/**
 * 出库单状态枚举
 *
 * @author asus
 * @version 2023/12/05 10:40
 **/
public enum OutPutStatesType {
    /**
     * 待出库
     */
    OUT_PENDING(1, "待出库"),
 
    /**
     * 已出库
     */
    OUT_SUCCESS(2, "已出库");
 
    private Integer value;
 
    private String desc;
 
    OutPutStatesType(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;
    }
 
}