| package doumeemes.dao.ext; | 
|   | 
| import doumeemes.dao.business.model.WOutbound; | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import doumeemes.dao.ext.bean.FinishedInBillBean; | 
| import doumeemes.dao.ext.beanDto.QueryWOutBoundDto; | 
| import doumeemes.dao.ext.beanDto.QueryWSOutBoundDto; | 
| import doumeemes.dao.ext.beanDto.QueryWTransferDto; | 
| import doumeemes.dao.ext.dto.QueryNoticesExtDTO; | 
| import doumeemes.dao.ext.vo.WOutboundExtListVO; | 
| import doumeemes.dao.ext.dto.QueryWOutboundExtDTO; | 
| import doumeemes.dao.ext.vo.WTransferExtListVO; | 
| import doumeemes.dao.ext.vo.WorkOrderOutboundExtListVO; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| import java.util.List; | 
|   | 
| public interface WOutboundExtMapper extends BaseMapper<WOutbound> { | 
|   | 
|     /** | 
|      * 管理页面查询 | 
|      * @author 江蹄蹄 | 
|      * @date 2022/04/20 10:57 | 
|      */ | 
|     List<WOutboundExtListVO> selectList(QueryWOutboundExtDTO dto); | 
|   | 
|   | 
|     List<WOutboundExtListVO> selectAdminList(QueryWOutBoundDto dto); | 
|   | 
|     Integer selectCount(QueryWOutBoundDto param); | 
|   | 
|     WOutbound wOutboundById(@Param("id") Integer id); | 
|   | 
|     void insertBatch(List<WOutbound> outboundList); | 
|   | 
|     Integer selectCountToday(QueryWOutboundExtDTO w); | 
|   | 
|   | 
|     /** | 
|      * 完工入库使用 (根据入库货位 筛选 13 件小时内 /入库单主键) | 
|      * @param inLocationIds | 
|      * @return | 
|      */ | 
|     List<FinishedInBillBean> finishedInBill(@Param("inLocationIds") String inLocationIds,@Param("inIds") String inIds); | 
|   | 
|   | 
|   | 
|     List<WorkOrderOutboundExtListVO> workOrderOutList(QueryWSOutBoundDto dto); | 
|   | 
| } |