| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.yuanchu.mom.pojo.InsBushing; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.yuanchu.mom.dto.FiberDto; |
| | | import com.yuanchu.mom.dto.FibersDto; |
| | | import com.yuanchu.mom.pojo.InsBushing; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface InsBushingMapper extends BaseMapper<InsBushing> { |
| | | |
| | | List<FibersDto> selectFibersByBushingId(Integer bushingId); |
| | | |
| | | List<FiberDto> selectFiberByBushingId(Integer bushingId); |
| | | |
| | | List<FiberDto> selectFiberByFibersId(Integer fibersId); |
| | | |
| | | } |