zjj
昨天 85eb4383be51f548a7e80112c4e6544a119a10cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vincent.rsf.server.api.entity.enums;
 
public enum LocUseStatusType {
    Empty_Slot("O","空库位"),
    In_Stock("F","在库"),
    Empty_Pallet("D","空托盘")
    ;
 
 
 
    LocUseStatusType(String type, String desc) {
        this.type = type;
        this.desc = desc;
    }
 
    public String type;
    public String desc;
}