1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.appendix.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.appendix.pojo.ProductStructureInstance;
|
| /**
| * <br>
| * BOM子集-附表Mapper
| * </br>
| *
| * @author deslrey
| * @version 1.0
| * @since 2026/03/18 13:20
| */
| public interface ProductStructureInstanceMapper extends BaseMapper<ProductStructureInstance> {
| }
|
|