gdg
2021-01-18 12714c71c7737e21c3268b44a39f8f02befc5cb5
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
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.OpeOrder;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by johnny on 17/12/14.
 */
public interface OpeOrderDao {
 
    public OpeOrder getOpeOrder(String id) throws DataAccessException;
    public List<OpeOrder> getOpeOrderList(Map params) throws DataAccessException;
 
    public List<OpeOrder> getOpeOrderListForTable(String code,String Status ) throws DataAccessException;
 
    public int getOpeOrderTotalCount(Map params) throws DataAccessException;
 
    public void insertOpeOrder(OpeOrder opeOrder) throws DataAccessException;
    public int updateOpeOrder(OpeOrder opeOrder) throws DataAccessException;
    public int deleteOpeOrder(List<String> ids) throws DataAccessException;
 
    OpeOrder selectParentOrder(String id);
 
    void updateOpeOrderStatus(OpeOrder oo);
}