| | |
| | | public List<DeviceOrder> selectDeviceOrderList(DeviceOrder deviceOrder) throws Exception; |
| | | |
| | | /** |
| | | * 查询设备订单分页查询信息 |
| | | * 根据登录的用户来查询自己未派单的安装单/维修单数量 |
| | | * |
| | | * @param deviceOrder |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public List<DeviceOrder> selectDeviceOrderList1(DeviceOrder deviceOrder) throws Exception; |
| | | public int selectDeviceOrderCountByUndeliveredorders(DeviceOrder deviceOrder) throws Exception; |
| | | |
| | | /** |
| | | * 根据登录的用户来查询自己已派单的安装单/维修单数量 |
| | | * |
| | | * @param deviceOrder |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public int selectDeviceOrderCountByDispatchedorders(DeviceOrder deviceOrder) throws Exception; |
| | | |
| | | /** |
| | | * 根据登录的用户来查询自己已接单的安装单/维修单数量 |
| | | * |
| | | * @param deviceOrder |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public int selectDeviceOrderCountByReceivedorders(DeviceOrder deviceOrder) throws Exception; |
| | | |
| | | /** |
| | | * 根据登录的用户来查询自己已完成的安装单/维修单数量 |
| | | * |
| | | * @param deviceOrder |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public int selectDeviceOrderCountByCompleted(DeviceOrder deviceOrder) throws Exception; |
| | | |
| | | /** |
| | | * 根据id查询安装订单信息 |