| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.measuringinstrumentledger.dto.SparePartsDto; |
| | | import com.ruoyi.measuringinstrumentledger.pojo.SpareParts; |
| | | import io.lettuce.core.dynamic.annotation.Param; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface SparePartsMapper extends BaseMapper<SpareParts> { |
| | | IPage<SparePartsDto> listPage(Page page,@Param("spareParts") SpareParts spareParts); |
| | | IPage<SparePartsDto> listPage(Page page, SpareParts spareParts); |
| | | |
| | | List<SparePartsDto> listByDeviceLedgerId(@Param("deviceLedgerId") Long deviceLedgerId); |
| | | } |