/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.web.dispaly.tree; /** * <p> ILevelTreeNode.java </p> * * 多层树节点接口。 */ public interface ILevelTreeNode extends ITreeNode { /** * 获取父节点编号 * @return */ public Long getParentId(); /** * 获取自身节点编号 * @return */ public Long getId(); }