| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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.AskForLeaveScreenVo;
- import com.template.model.vo.AskForLeaveVo;
- import com.template.model.vo.ClasAttendanceVo;
- import com.template.model.vo.SmartAttendanceVo;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.Date;
- 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") String ifVerification, @Param("classId") String classId);
- IPage<SmartAttendanceVo> queryPage(Page<SmartAttendanceVo> page, @Param("gradeId") Integer gradeId, @Param("classId") Integer classId, @Param("status") String status, @Param("studentNo") String studentNo, @Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime);
- List<SmartAttendanceVo> queryExpor(@Param("gradeId") Integer gradeId, @Param("classId") Integer classId, @Param("status") String status, @Param("studentNo") String studentNo, @Param("name") String name, @Param("startTime") String startTime, @Param("endTime") String endTime);
- IPage<AskForLeaveScreenVo> askForLeaveScreenPage(Page<AskForLeaveScreenVo> page, @Param("cardNo") String cardNo, @Param("ifVerification") String ifVerification);
- List<ClasAttendanceVo> getClassHistoricalAttendance(@Param("startTime") Date startTime,@Param("endTime") Date endTime,@Param("id") Integer id);
- }
|