李宇
2021-04-07 fcdb56cf78b63f5b1455bbfab0c2bd7934b0aca5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.OpeApplyOrder;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by johnny on 17/12/15.
 */
public interface OpeApplyOrderDao {
 
    public List<OpeApplyOrder> getOpeApplyOrderList(Map params) throws DataAccessException;
    public int getOpeApplyOrderTotalCount(Map params) throws DataAccessException;
 
    public void insertOpeApplyOrder(OpeApplyOrder opeApplyOrder) throws DataAccessException;
}