| | |
| | | package zy.cloud.wms.manager.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Insert; |
| | | import org.apache.ibatis.annotations.Options; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import zy.cloud.wms.manager.entity.Item; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface ItemMapper extends BaseMapper<Item> { |
| | | |
| | | List<Item> chaoPrice(Map<String, Object> map,String uuid); |
| | | List<Item> chaoTime(Map<String, Object> map,String uuid); |
| | | List<Item> inspected(); |
| | | List<Item> finished(); |
| | | } |