智慧保安后台管理-外网-验收版本
tangzy
2021-12-06 cc057177b2fb17aee9a173a6adbabdc578fd74c7
src/main/java/org/springblade/modules/dispatcher/mapper/DispatcherMapper.java
@@ -16,6 +16,7 @@
 */
package org.springblade.modules.dispatcher.mapper;
import com.baomidou.mybatisplus.annotation.SqlParser;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.dispatcher.entity.Dispatcher;
import org.springblade.modules.dispatcher.vo.DispatcherUnitVO;
@@ -40,6 +41,14 @@
    * @return
    */
   List<DispatcherVO> selectDispatcherPage(IPage page, @Param("dispatcher") DispatcherVO dispatcher);
   /**
    * app从业单位查询
    *
    * @param page
    * @param dispatcher
    * @return
    */
   List<DispatcherVO> queryDispatcher(IPage page, @Param("dispatcher") DispatcherVO dispatcher);
   /**
    * 派遣记录详情
@@ -53,5 +62,13 @@
    * @param dispatcherUnitVO1
    * @return
    */
   Integer getDispatcherCount(@Param("dispatcherUnit")DispatcherUnitVO dispatcherUnitVO1);
   @SqlParser(filter = true)
   Integer getDispatcherCount(@Param("dispatcherUnitVO1")DispatcherUnitVO dispatcherUnitVO1);
   /**
    * 查询用的派遣信息
    * @param userId 用户id
    * @return
    */
    DispatcherVO getDispatcherInfoByUserId(@Param("userId") Long userId);
}