package com.ruoyi.staff.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.ruoyi.staff.dto.StaffSchedulingDto;
|
import com.ruoyi.staff.pojo.StaffScheduling;
|
import com.ruoyi.staff.vo.SearchSchedulingVo;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @author buhuazhen
|
* @description 针对表【staff_scheduling】的数据库操作Mapper
|
* @createDate 2025-09-03 14:50:34
|
* @Entity generator.domain.StaffScheduling
|
*/
|
public interface StaffSchedulingMapper extends BaseMapper<StaffScheduling> {
|
|
IPage<StaffSchedulingDto> listPage(IPage page, @Param("vo") SearchSchedulingVo vo);
|
}
|