|
|
@@ -84,4 +84,32 @@ public interface XxpInspectionMapper
|
|
|
*/
|
|
|
List<Map<String, Object>> selectUserXxpInspectionList(@Param("labId") Long labId, @Param("startTime") String startTime,@Param("endTime") String endTime);
|
|
|
|
|
|
+ /***
|
|
|
+ * 查询某时间段内签到人数集合
|
|
|
+ * @param inspectionVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<XxpInspectionVO> selectListSigninCount(XxpInspectionVO inspectionVO);
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 查询某时间段内未签到人数集合
|
|
|
+ * @param inspectionVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<XxpInspectionVO> selectListNotSigninCount(XxpInspectionVO inspectionVO);
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 正常签到列表
|
|
|
+ * @param inspection
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<XxpInspection> selectListSignin(XxpInspection inspection);
|
|
|
+
|
|
|
+ /***
|
|
|
+ * 异常签到列表
|
|
|
+ * @param xxpDuty
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<XxpDuty> selectListAbnormal(XxpDuty xxpDuty);
|
|
|
+
|
|
|
}
|