企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` /** * @author 张跃帅 * @Description: 公共tree父节点-枚举 * @date 2020/08/12 */ @Getter public enum CommonTreeParentIdEnum { /** * 父节点为0 */ PARENTID_0("0", "父节点为0"), /** * 父节点为1 */ PARENTID_1("1", "父节点为1"); private final String code; private final String name; CommonTreeParentIdEnum(String code, String name) { this.code = code; this.name = name; } }