| | |
| | | package com.yuanchu.mom.service; |
| | | |
| | | import com.yuanchu.mom.dto.WarehouseCellAndSampleDto; |
| | | import com.yuanchu.mom.dto.WarehouseDto; |
| | | import com.yuanchu.mom.pojo.Warehouse; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.WarehouseShelf; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author z1292 |
| | |
| | | int delWarehouse(Integer id); |
| | | |
| | | int upWarehouse(Warehouse warehouse); |
| | | |
| | | int delShelf(Integer id); |
| | | |
| | | int upShelf(WarehouseShelf warehouseShelf); |
| | | |
| | | List<WarehouseCellAndSampleDto> getWarehouse(Integer shelfId); |
| | | |
| | | int inWarehouse(String trees, String sampleCode); |
| | | |
| | | int outWarehouse(String sampleCode); |
| | | |
| | | Map<String, Object> getSampleRecord(Integer id); |
| | | |
| | | int searchSampleId(String sampleCode); |
| | | } |