| | |
| | | import com.zy.asrs.entity.OrderDetlPakin; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | |
| | | List<OrderDetlPakin> selectOrderDetlsByOrderNo(@Param("orderNo")String orderNo); |
| | | |
| | | boolean morpt(@Param("orderNo")String orderNo,@Param("matnr")String matnr); |
| | | |
| | | @Update("update man_order_detl_pakin set be_batch = #{beBatch} where id = #{id}") |
| | | int updateBeBatch(@Param("id") Long id, @Param("beBatch") Integer beBatch); |
| | | } |