zxl
2025-12-05 3777ec066316f3c1d3ca36e2cae5b1e05bac4f6e
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);
 
}