1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.mes.pp.mapper;
|
| import com.baomidou.dynamic.datasource.annotation.DS;
| import com.github.yulichang.base.MPJBaseMapper;
| import com.mes.pp.entity.OptimizeLayout;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author zhoush
| * @since 2024-04-16
| */
| @DS("pp")
| @Mapper
| public interface OptimizeLayoutMapper extends MPJBaseMapper<OptimizeLayout> {
|
| }
|
|