|
|
@@ -5,6 +5,7 @@ import com.xjrsoft.module.student.dto.CadreDeptTreeDto;
|
|
|
import com.xjrsoft.module.student.entity.CadreDept;
|
|
|
import com.xjrsoft.module.student.vo.CadreDeptTreeVo;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@@ -16,5 +17,5 @@ import java.util.List;
|
|
|
*/
|
|
|
@Mapper
|
|
|
public interface CadreDeptMapper extends MPJBaseMapper<CadreDept> {
|
|
|
- List<CadreDeptTreeVo> getCadreDeptTree(CadreDeptTreeDto dto);
|
|
|
+ List<CadreDeptTreeVo> getCadreDeptTree(@Param("dto") CadreDeptTreeDto dto);
|
|
|
}
|