1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.chinaztt.mes.technology.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.chinaztt.mes.technology.entity.StructureComponent;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 产品结构组件
| *
| * @author zhangxy
| * @date 2020-09-01 10:51:42
| */
| @Mapper
| public interface StructureComponentMapper extends BaseMapper<StructureComponent> {
|
| }
|
|