| | |
| | | import com.zy.asrs.entity.WaitPakin; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface WaitPakinMapper extends BaseMapper<WaitPakin> { |
| | | |
| | | @Select("select count(*) from cust_wait_pakin where matnr = #{matnr};") |
| | | Integer selectCountByMatNr(String matnr); |
| | | |
| | | @Select("select count(*) from cust_wait_pakin where matnr = #{matnr} and zpallet = #{zpallet};") |
| | | Integer selectByBarcodeAndMatnr(String matnr, String zpallet); |
| | | } |