| | |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | int save(Integer workNo); |
| | | |
| | | /** |
| | | * 出库 101 下该单号已出现的 plt_type(历史表) |
| | | */ |
| | | @Select("SELECT plt_type FROM asr_wrk_mast_log WHERE io_type = 101 AND plt_type IS NOT NULL AND plt_type > 0 AND user_no = #{userNo}") |
| | | List<Integer> listOutboundPltTypesByUserNo(@Param("userNo") String userNo); |
| | | |
| | | /** |
| | | * 查询库存移动流水记录 |
| | | */ |
| | | List<InventoryFlowDto> inventoryFlowList(@Param("curr") Integer curr,@Param("limit") Integer limit, @Param("param") Map<String, Object> param); |