| | |
| | | package zy.cloud.wms.manager.mapper; |
| | | |
| | | import zy.cloud.wms.manager.entity.ReceiveDetl; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | import zy.cloud.wms.manager.entity.ReceiveDetl; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | @Repository |
| | | public interface ReceiveDetlMapper extends BaseMapper<ReceiveDetl> { |
| | | |
| | | List<ReceiveDetl> selectByOrderNo(@Param("orderNo") String orderNo, @Param("hostId") Long hostId); |
| | | |
| | | List<ReceiveDetl> selectByOrderNo(String orderNo, Long hostId); |
| | | } |