1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.mes.engineerScheduling.mapper;
|
| import com.mes.engineerScheduling.entity.EngineerScheduling;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author wf
| * @since 2025-10-27
| */
| public interface EngineerSchedulingMapper extends BaseMapper<EngineerScheduling> {
|
| }
|
|