27 lines
614 B
Plaintext
27 lines
614 B
Plaintext
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<ProjectManageBean> {
|
|
|
|
List<ProjectManageBean> getVolLever();
|
|
|
|
List<ProjectManageBean> getProjectType();
|
|
|
|
public List<ZNode> findWorkTree();
|
|
|
|
List<ProjectManageBean> getProjectName(ProjectManageBean o);
|
|
|
|
List<ZNode> projectTree(ProjectManageBean o);
|
|
|
|
List<ZNode> projectTreeByUnitId(ProjectManageBean o);
|
|
|
|
ProjectManageBean findByName(String name);
|
|
}
|