| | |
| | | */ |
| | | public interface SysWarehouseDao { |
| | | |
| | | public SysWarehouse getSysWarehouse(String id) throws DataAccessException; |
| | | public SysWarehouse getSysWarehouse(Long id) throws DataAccessException; |
| | | @SuppressWarnings("rawtypes") |
| | | public List<SysWarehouse> getSysWarehouseList(Map params) throws DataAccessException; |
| | | public List<SysWarehouse> getAllSysWarehouseList() throws DataAccessException; |
| | |
| | | |
| | | public void insertSysWarehouse(SysWarehouse sysWarehouse) throws DataAccessException; |
| | | public int updateSysWarehouse(SysWarehouse sysWarehouse) throws DataAccessException; |
| | | public int deleteSysWarehouses(List<String> ids) throws DataAccessException; |
| | | public int deleteSysWarehouses(List<Long> ids) throws DataAccessException; |
| | | |
| | | public SysWarehouse getSysWarehouseByBarCode(String barCode) throws DataAccessException; |
| | | |