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 getOpeOrderList(Map params) throws DataAccessException; public List 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 ids) throws DataAccessException; OpeOrder selectParentOrder(Long id); void updateOpeOrderStatus(OpeOrder oo); }