| | |
| | | package com.zy.asrs.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.zy.asrs.entity.HalfBarcode; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Mapper |
| | | @Repository |
| | |
| | | HalfBarcode selectByZpallet(String zpallet); |
| | | |
| | | boolean half(HalfBarcode halfBarcode); |
| | | |
| | | List<HalfBarcode> getList(Page<HalfBarcode> page1, HalfBarcode halfBarcode); |
| | | } |