李宇
2021-01-14 5ef5c096c23869fff7872cf498077d6924c679b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.OpeUseFlow;
import org.apache.ibatis.annotations.Param;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by johnny on 17/12/16.
 */
public interface OpeUseFlowDao {
 
    void insertOpeUseFlow(OpeUseFlow opeUseFlow) throws DataAccessException;
 
    @SuppressWarnings("rawtypes")
    List<OpeUseFlow> getOpeUseFlowList(Map params);
 
    @SuppressWarnings("rawtypes")
    int getOpeUseFlowTotalCount(Map params);
 
    int update(OpeUseFlow opeUseFlow);
 
    void deleteByReagentCode(String reagentCode);
 
    void deleteByReagentCodeAndStatus(Map<String,Object> params);
 
    int updateTimeByCode(Map params);
 
    OpeUseFlow getOpeUseFlowByCode(@Param("reagentCode") String reagentCode);
}