zouyu
2025-03-10 6e8e81028bd24a5b08f774ecf8fca10580be830c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.inspect.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.inspect.pojo.InsFiber;
import com.ruoyi.inspect.pojo.InsFibers;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * <p>
 * 光纤配置的光纤表 Mapper 接口
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2024-05-30 05:59:01
 */
@Mapper
public interface InsFiberMapper extends BaseMapper<InsFiber> {
 
    List<InsFibers> selectInsFibersByInsFiberId(Integer id);
}