package com.nanometer.smartlab.service; import com.nanometer.smartlab.entity.OpeLaboratoryReserve; import java.util.List; public interface OpeLaboratoryReserveService { void insert(OpeLaboratoryReserve opeLaboratoryReserve); public List selectByReId(String id); public void updateByReId(String newReId,String oldReId); }