/** * Copyright (c) 2018 人人开源 All rights reserved. * * https://www.renren.io * * 版权所有,侵权必究! */ package com.zt.modules.sys.dao; import com.zt.common.dao.BaseDao; import com.zt.core.sys.model.SysDept; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * 部门 * * @author hehz */ @Mapper public interface SysDeptDao extends BaseDao { List getAll(); List getList(Map params); SysDept getById(Long id); List getListByParent(Map params); List getDeptList3(); }