#
vincentlu
4 天以前 15b4f0733767ae5d8a74f3302c21d13eb4697b4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.acs.manager.manager.enums;
 
public enum IntegrationDirectionType {
 
    NONE(0),
    INBOUND(1),
    OUTBOUND(2),
    ;
 
    public int value;
 
    IntegrationDirectionType(int value) {
        this.value = value;
    }
 
}