kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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(Long 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<Long> ids) throws DataAccessException;
 
    OpeOrder selectParentOrder(Long id);
 
    void updateOpeOrderStatus(OpeOrder oo);
}