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);
|
|
}
|