Quellcode durchsuchen

用户画像大屏优化

wangxx vor 1 Monat
Ursprung
Commit
554f681aa9

+ 4 - 1
airport-ledger/src/main/java/com/sundot/airport/ledger/mapper/LedgerPatrolInspectionMapper.java

@@ -3,6 +3,7 @@ package com.sundot.airport.ledger.mapper;
3
 import java.util.List;
3
 import java.util.List;
4
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5
 import com.sundot.airport.ledger.domain.LedgerPatrolInspection;
5
 import com.sundot.airport.ledger.domain.LedgerPatrolInspection;
6
+import org.apache.ibatis.annotations.Param;
6
 
7
 
7
 /**
8
 /**
8
  * 队室三级质控巡查记录Mapper接口
9
  * 队室三级质控巡查记录Mapper接口
@@ -17,5 +18,7 @@ public interface LedgerPatrolInspectionMapper extends BaseMapper<LedgerPatrolIns
17
      * @param endTime 结束时间
18
      * @param endTime 结束时间
18
      * @return 巡查次数
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
 }