智慧保安后台管理-外网-验收版本
Administrator
2021-07-07 6f82bca9ecedd005f515f5f138f9e4e37d470fbc
src/main/java/org/springblade/modules/dispatcher/mapper/DispatcherMapper.java
@@ -16,6 +16,7 @@
 */
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;
@@ -37,6 +38,12 @@
    * @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);
}