gdg
2020-12-09 458dba2e9a28227c3371571b0e7916baf9cce0e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.LaboratoryReagentReserve;
import com.nanometer.smartlab.entity.OpeApply;
import com.nanometer.smartlab.entity.OpeApplyReserve;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by johnny on 17/12/8.
 */
public interface LabReagentReserveDao {
 
 
    @SuppressWarnings("rawtypes")
    List<LaboratoryReagentReserve> getList(Map params) throws DataAccessException;
    @SuppressWarnings("rawtypes")
    int getCount(Map params) throws DataAccessException;
}