| | |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.WrkMast; |
| | | import com.zy.asrs.entity.result.InOutCountDto; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | |
| | | List<WrkMast> selectToBeHistoryData(); |
| | | |
| | | Integer checkFinishByOrder(@Param("orderNo") String orderNo); |
| | | |
| | | List<InOutCountDto> selectTop100(); |
| | | |
| | | List<WrkMast> selectSameMatnrs(@Param("matnr") String matnr, @Param("batch") String batch, @Param("grade") String grade); |
| | | } |