| | |
| | | |
| | | public interface StaMapper extends BaseMapper<Sta> { |
| | | |
| | | // inbound ------------------- |
| | | |
| | | int tryReserveIn(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | int releaseReserveIn(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | int confirmReserveIn(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | // outbound ------------------ |
| | | |
| | | int tryReserveOut(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | int releaseReserveOut(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | int confirmReserveOut(@Param("staId") Long staId, @Param("qty") Integer qty); |
| | | |
| | | } |