| 123456789101112131415161718192021222324252627282930 |
- 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;
- /**
- * <p>
- * 楼栋表 Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2023-12-25
- */
- @Repository
- public interface SmartAttendanceMapper extends BaseMapper<SmartAttendance> {
- List<Integer> getGroup();
- IPage<AskForLeaveVo> askForLeavePage(Page<AskForLeaveVo> 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<SmartAttendanceVo> queryPage(Page<SmartAttendanceVo> 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);
- }
|