| | |
| | | package com.ltkj.system.mapper; |
| | | |
| | | import java.sql.ResultSet; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.common.core.domain.TreeSelect; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.ltkj.common.core.domain.entity.SysDept; |
| | |
| | | * @return 部门信息集合 |
| | | */ |
| | | public List<SysDept> selectDeptList(SysDept dept); |
| | | |
| | | |
| | | @Select("SELECT * FROM v_tj_deptpro") |
| | | public List<SysDept> selectDeptTreeList1(); |
| | | |
| | | @Select("SELECT * FROM v_dept_template") |
| | | public List<SysDept> selectDeptTreeList11(); |
| | | |
| | | /** |
| | | * 根据角色ID查询部门树信息 |
| | |
| | | |
| | | @Select(" SELECT a.dept_id FROM sys_dept a WHERE a.deleted=0 AND a.dept_name like concat('%',#{deptName},'%')") |
| | | List<String> getSysDeptId(String deptName); |
| | | |
| | | |
| | | @Select("call pro_tjhzlb_list(#{deptid,mode=IN},#{tjname,mode=IN},#{tjNumber,mode=IN},#{type,mode=IN},#{page,mode=IN},#{pageSize,mode=IN})") |
| | | ResultSet getSysDeptYjWjCustomerList(@Param("deptid")String deptid, @Param("tjname") String tjname, @Param("tjNumber") String tjNumber, |
| | | @Param("type")int type, @Param("page") int page , @Param("pageSize") int pageSize); |
| | | |
| | | List<Map<String, Object>> getSysDeptYjWjCustomerList1(Map<String,Object> map); |
| | | |
| | | List<List<?>> getSysDeptYjWjCustomerList13(Map<String,Object> map); |
| | | |
| | | List<List<?>> getSysDeptHyAndYxYjWjCustomerList13(Map<String,Object> map); |
| | | |
| | | List<ResultSet> getSysDeptYjWjCustomerList2(Map<String,Object> map); |
| | | } |