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; } }