package com.bonus.bm.dao; import java.util.List; import com.bonus.bm.beans.ProjectManageBean; import com.bonus.core.BonusBatis; import com.bonus.sys.BaseDao; import com.bonus.sys.beans.ZNode; @BonusBatis public interface ProjectManageDao extends BaseDao { List getVolLever(); List getProjectType(); public List findWorkTree(); List getProjectName(ProjectManageBean o); List projectTree(ProjectManageBean o); List projectTreeByUnitId(ProjectManageBean o); ProjectManageBean findByName(String name); }