package com.nanometer.smartlab.service;
|
|
import com.nanometer.smartlab.entity.OpeLaboratoryReserve;
|
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
|
|
import java.util.List;
|
|
public interface OpeLaboratoryReserveService {
|
|
void insert(OpeLaboratoryReserve opeLaboratoryReserve);
|
|
|
public List<OpeLaboratoryReserve> selectByReId(Long id);
|
|
public void updateByReId(Long newReId,Long oldReId);
|
|
void updateByReagent(Long reagentId, Long houseId, Long containerId, Long userId);
|
}
|