自动化立体仓库 - WMS系统
chen.llin
2025-12-24 2e766d59fef59c07d48e58a36e4f8c57bb29a458
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
package com.zy.asrs.enums;
 
/**
 * @author Ryan
 * @version 1.0
 * @date 2025/9/25
 * @description: 通用类型枚举
 */
public enum CommonEnum {
 
    //通用类型
    COMMON_ENUM_Y(1, "是"),
    //通用
    COMMON_ENUM_N(0, "否");
 
    public Integer type;
 
    public String desc;
 
    CommonEnum(Integer type, String desc) {
        this.type = type;
        this.desc = desc;
    }
 
}