|
|
@@ -3,6 +3,7 @@ package com.sundot.airport.ledger.mapper;
|
|
3
|
3
|
import java.util.List;
|
|
4
|
4
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
5
|
5
|
import com.sundot.airport.ledger.domain.LedgerPatrolInspection;
|
|
|
6
|
+import org.apache.ibatis.annotations.Param;
|
|
6
|
7
|
|
|
7
|
8
|
/**
|
|
8
|
9
|
* 队室三级质控巡查记录Mapper接口
|
|
|
@@ -17,5 +18,7 @@ public interface LedgerPatrolInspectionMapper extends BaseMapper<LedgerPatrolIns
|
|
17
|
18
|
* @param endTime 结束时间
|
|
18
|
19
|
* @return 巡查次数
|
|
19
|
20
|
*/
|
|
20
|
|
- int countByInspectedNameAndDateRange(String inspectedName, String beginTime, String endTime);
|
|
|
21
|
+ int countByInspectedNameAndDateRange(@Param("inspectedName") String inspectedName,
|
|
|
22
|
+ @Param("beginTime") String beginTime,
|
|
|
23
|
+ @Param("endTime") String endTime);
|
|
21
|
24
|
}
|