| | |
| | | */ |
| | | public interface OpeOrderDao { |
| | | |
| | | public OpeOrder getOpeOrder(String id) throws DataAccessException; |
| | | 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 void insertOpeOrder(OpeOrder opeOrder) throws DataAccessException; |
| | | public int updateOpeOrder(OpeOrder opeOrder) throws DataAccessException; |
| | | public int deleteOpeOrder(List<String> ids) throws DataAccessException; |
| | | public int deleteOpeOrder(List<Long> ids) throws DataAccessException; |
| | | |
| | | OpeOrder selectParentOrder(String id); |
| | | OpeOrder selectParentOrder(Long id); |
| | | |
| | | void updateOpeOrderStatus(OpeOrder oo); |
| | | } |