#
Junjie
2024-04-08 2f93fd44f708cd93fdb912600b0f4b664d11c95b
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;
    }
}