李宇
2021-02-05 a5e1d3d875f140065a8f30a27601fb45ad36714a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}