| | |
| | | package org.springblade.modules.dispatcher.service; |
| | | |
| | | import org.springblade.modules.dispatcher.entity.Dispatcher; |
| | | import org.springblade.modules.dispatcher.vo.DispatcherUnitVO; |
| | | import org.springblade.modules.dispatcher.vo.DispatcherVO; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | IPage<DispatcherVO> selectDispatcherPage(IPage<DispatcherVO> page, DispatcherVO dispatcher); |
| | | |
| | | /** |
| | | * app从业单位查询 |
| | | * |
| | | * @param page |
| | | * @param dispatcher |
| | | * @return |
| | | */ |
| | | IPage<DispatcherVO> queryDispatcher(IPage<DispatcherVO> page, DispatcherVO dispatcher); |
| | | |
| | | /** |
| | | * 派遣记录详情 |
| | | * @param dispatcher 派遣记录对象 |
| | | * @return |
| | | */ |
| | | DispatcherVO getDispatcherInfo(Dispatcher dispatcher); |
| | | |
| | | /** |
| | | * 派遣记录条数 |
| | | * @param dispatcherUnitVO1 |
| | | * @return |
| | | */ |
| | | Integer getDispatcherCount(DispatcherUnitVO dispatcherUnitVO1); |
| | | |
| | | /** |
| | | * 查询用的派遣信息 |
| | | * @param userId 用户id |
| | | * @return |
| | | */ |
| | | DispatcherVO getDispatcherInfoByUserId(Long userId); |
| | | } |