#
luxiaotao1123
2 天以前 3e6cd2231fc99a855129d1a293b8d65adf1683b5
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;
    }
 
}