zss
2024-11-04 7a268ed852ca462347cca383a6d0306ff54e1363
inspect-server/src/main/java/com/yuanchu/mom/service/WarehouseService.java
@@ -1,10 +1,13 @@
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
@@ -16,4 +19,24 @@
    int addWarehouse(String name);
    List<WarehouseDto> selectWarehouse();
    int addShelf(WarehouseShelf warehouseShelf);
    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, boolean a);
    Map<String, Object> getSampleRecord(Integer id);
    int searchSampleId(String sampleCode);
}