Pu Zhibing
2025-04-22 d138293736414a314467a2641e6116ff263ead48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.ruoyi.bussiness.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.bussiness.domain.PlacementApplyRecord;
import com.ruoyi.bussiness.object.response.screen.ScreenResponse;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface PlacementApplyRecordMapper extends BaseMapper<PlacementApplyRecord> {
 
 
    /**
     * 大屏-统计
     * @param month
     * @param lastMonth
     * @param nextMonth
     * @return
     */
    ScreenResponse queryMainData(@Param("month") String month,
                                 @Param("lastMonth") String lastMonth,
                                 @Param("nextMonth") String nextMonth);
 
 
    Integer countPassIdCard(@Param("idCard") String idCard);
 
 
 
    List<PlacementApplyRecord> getRecordsByCardIds(@Param("idCards") List<String> idCards);
 
 
    List<Map<String,Object>> countError(@Param("applyId") Long applyId);
 
 
    PlacementApplyRecord getRecordsByCardId(@Param("idCard") String idCard);
}