package com.qianwen.smartman.modules.andon.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.andon.entity.AndonRecord; import com.qianwen.smartman.modules.andon.vo.AndonStatisticalCardVO; import com.qianwen.smartman.modules.andon.vo.AndonTableStatisticalVO; public interface AndonRecordMapper extends BaseMapper { AndonStatisticalCardVO queryCard(@Param("workstations") List workstations, @Param("startTime") String startTime, @Param("endTime") String endTime); IPage getTableAndon(IPage page, @Param("startTime") String startTime, @Param("endTime") String endTime, @Param("workstationIds") List workstationIds); }