1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package org.dromara.qa.md.mapper;
|
| import org.dromara.qa.md.domain.MdShift;
| import org.dromara.qa.md.domain.vo.MdShiftVo;
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
| /**
| * 班次Mapper接口
| *
| * @author zhuguifei
| * @date 2026-03-04
| */
| public interface MdShiftMapper extends BaseMapperPlus<MdShift, MdShiftVo> {
|
| }
|
|