add
gdg
2020-10-30 9222b2db700cd25e46b67c2a3c05fffd3817cc64
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.nanometer.smartlab.service;
 
import com.nanometer.smartlab.entity.OpeLaboratoryReserve;
 
import java.util.List;
 
public interface OpeLaboratoryReserveService {
 
    void insert(OpeLaboratoryReserve opeLaboratoryReserve);
 
    public List<OpeLaboratoryReserve> selectByReId(String id);
    public void updateByReId(String newReId,String oldReId);
}