| | |
| | | public interface MdcEquipmentPunchMapper extends BaseMapper<MdcEquipmentPunch> { |
| | | |
| | | List<MdcEquipmentPunch> list(@Param("equipmentIds") List<String> equipmentIds, @Param("date") String date); |
| | | |
| | | |
| | | // 查询早班上班打卡设备数 |
| | | int countMorningShiftIn(@Param("date") String date); |
| | | |
| | | // 查询晚班上班打卡设备数 |
| | | int countEveningShiftIn(@Param("date") String date); |
| | | |
| | | // 查询早班下班打卡设备数 |
| | | int countMorningShiftOut(@Param("date") String date); |
| | | |
| | | // 查询晚班下班打卡设备数 |
| | | int countEveningShiftOut(@Param("date") String date); |
| | | /** |
| | | * 获取所有设备数 |
| | | */ |
| | | int getTotalDeviceCount(); |
| | | |
| | | } |