| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.service.InspectionService; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | |
| | | @ApiImplicitParam(name = "bid", value = "委托报检单id", dataTypeClass = Integer.class, required = true), |
| | | @ApiImplicitParam(name = "did", value = "委托报检样品id", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | |
| | | |
| | | @GetMapping("/selectLinkByid") |
| | | public Result selectLinkByid(Integer bid, Integer did) { |
| | | return Result.success(linkBasicInformationService.selectLinkByid(bid, did)); |