zjj
2025-06-30 8b8a2086509e28bb902166aa35e4c287eb906621
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;
    }
}