zss
2025-03-11 eeb8d7faa8d25b3ca9fe75ef28f035c49af5b06d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.inspect.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.inspect.dto.BushingDto;
import com.ruoyi.inspect.pojo.InsBushing;
 
import java.util.List;
 
/**
 * <p>
 * 光纤配置的套管表 服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2024-05-30 05:58:16
 */
public interface InsBushingService extends IService<InsBushing> {
 
    List<BushingDto> selectBushingBySampleId(Integer sampleId);
 
}