package com.bonus.bm.dao; import java.util.List; import org.apache.ibatis.annotations.Param; 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); List getProvinces(); List getCities(@Param("param")ProjectManageBean o); List getDistricts(@Param("param")ProjectManageBean o); }