#
luxiaotao1123
2024-03-21 96747dd8a534a10cd950b720e23ebf97e42fa2d3
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;
    }
}