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);
|
}
|