package com.template.mapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.template.model.pojo.SmartAttendance; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.template.model.vo.AskForLeaveVo; import com.template.model.vo.SmartAttendanceVo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** *

* 楼栋表 Mapper 接口 *

* * @author ceshi * @since 2023-12-25 */ @Repository public interface SmartAttendanceMapper extends BaseMapper { List getGroup(); IPage askForLeavePage(Page page, @Param("name") String name,@Param("cardNo") String cardNo,@Param("startTime") String startTime,@Param("endTime") String endTime,@Param("ifVerification")Integer ifVerification,@Param("classId")String classId); IPage queryPage(Page page,@Param("gradeId") Integer gradeId,@Param("classId") Integer classId,@Param("status") Integer status,@Param("studentNo") String studentNo,@Param("name") String name,@Param("startTime") String startTime,@Param("endTime") String endTime); }