zxl
2025-12-05 70b9d626aa9e177d8be559c9dbe0bd43c50374f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ycl.mapper;
 
import com.ycl.domain.entity.WorkStationSchedule;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.domain.vo.WorkStationScheduleVO;
import com.ycl.domain.query.WorkStationScheduleQuery;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 *  Mapper 接口
 *
 * @author zxl
 * @since 2025-12-05
 */
@Mapper
public interface WorkStationScheduleMapper extends BaseMapper<WorkStationSchedule> {
 
    /**
     * id查找
     * @param id
     * @return
     */
    WorkStationScheduleVO getById(Integer id);
 
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") WorkStationScheduleQuery query);
 
}