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(String id);
|
|
public void updateByReId(String newReId,String oldReId);
|
|
void updateByReagent(String reagentId, String houseId, String containerId, String userId);
|
}
|