| | |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.stylefeng.guns.core.node.ZTreeNode; |
| | | import com.stylefeng.guns.modular.system.dao.DeptMapper; |
| | | import com.stylefeng.guns.modular.system.dto.DeptQuery; |
| | | import com.stylefeng.guns.modular.system.model.Dept; |
| | | import com.stylefeng.guns.modular.system.service.IDeptService; |
| | | import org.springframework.stereotype.Service; |
| | |
| | | public List<Map<String, Object>> list(String condition) { |
| | | return this.baseMapper.list(condition); |
| | | } |
| | | |
| | | @Override |
| | | public List<Dept> getList(DeptQuery req) { |
| | | return this.baseMapper.getList(req); |
| | | } |
| | | @Override |
| | | public List<Dept> getList1(DeptQuery req) { |
| | | return this.baseMapper.getList1(req); |
| | | } |
| | | } |