#
Junjie
2024-04-13 e9a4418c14ef68fb454300b092c413e8df259ec2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.wcs.common.domain.enums;
 
public enum DictType {
 
    BOOLEAN(1),
    NUMBER(2),
    STRING(3),
    JSON(4),
    IMAGE(5),
    ;
 
    public int flag;
 
    DictType(int flag) {
        this.flag = flag;
    }
}