wangmengzhao
2023-12-01 cbdf1e550c73c90c01ec0c792eb7bfe96dcc910f
wumei-smart-master/springboot/wumei-iot/src/main/java/com/ruoyi/iot/mapper/DeviceOrderMapper.java
@@ -25,13 +25,40 @@
    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查询安装订单信息