| | |
| | | */ |
| | | package org.springblade.modules.dispatcher.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.dispatcher.entity.Dispatcher; |
| | | import org.springblade.modules.dispatcher.vo.DispatcherVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | * @param dispatcher |
| | | * @return |
| | | */ |
| | | List<DispatcherVO> selectDispatcherPage(IPage page, DispatcherVO dispatcher); |
| | | List<DispatcherVO> selectDispatcherPage(IPage page, @Param("dispatcher") DispatcherVO dispatcher); |
| | | |
| | | /** |
| | | * 派遣记录详情 |
| | | * @param dispatcher 派遣记录对象 |
| | | * @return |
| | | */ |
| | | DispatcherVO getDispatcherInfo(@Param("dispatcher")Dispatcher dispatcher); |
| | | } |