| | |
| | | package com.nanometer.smartlab.service; |
| | | |
| | | import com.nanometer.smartlab.entity.SysLaboratory; |
| | | import com.nanometer.smartlab.entity.SysWarehouse; |
| | | import com.nanometer.smartlab.entity.dto.InWarehouseInfoDto; |
| | | import com.nanometer.smartlab.entity.dto.ReagentReceivingDto; |
| | | import com.nanometer.smartlab.entity.dto.SysWarehouseDto; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | public boolean deleteSysWarehouse(List<SysWarehouse> sysWarehouseList); |
| | | public boolean isSysWarehouseExist(String barCode, String editId); |
| | | |
| | | List<SysWarehouseDto> getWarehouseList(); |
| | | |
| | | void putInWarehouse(InWarehouseInfoDto inWarehouseInfo) throws Exception; |
| | | |
| | | void reagentReceiving(ReagentReceivingDto reagentReceiving); |
| | | |
| | | void updateSysWarehouse2(SysWarehouse sysWarehouse, SysLaboratory sysLaboratory); |
| | | } |