1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.gistack.sm.sg.mapper;
|
| import cn.gistack.sm.sg.DO.SgGxConfigDO;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 设备工序配置角色表 Mapper 接口
| * </p>
| *
| * @author shenyijian
| * @since 2024-06-15 11:45:35
| */
| public interface SgGxConfigMapper extends BaseMapper<SgGxConfigDO> {
|
| }
|
|