luxiaotao1123
2024-03-25 80e5ee8049eefe7039d77048f43e6e0566a07953
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;
    }
}