Junjie
2024-09-13 a1a7c03eae40f4b0344fce652e1a240cf5283624
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.wms.asrs.entity.enums;
 
public enum CacheSiteStatusType {
 
    O(0, "空站"),
    F(1, "满站"),
    R(2, "预约"),
    ;
 
 
    public Integer id;
    public String desc;
 
    CacheSiteStatusType(Integer id, String desc) {
        this.id = id;
        this.desc = desc;
    }
 
}