| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Instrument; |
| | | import com.yuanchu.limslaboratory.pojo.MeteringPlan; |
| | | import com.yuanchu.limslaboratory.pojo.dto.GetPlanMeasureInstrumentDto; |
| | | import com.yuanchu.limslaboratory.pojo.dto.SelectMeasurementLedgerDto; |
| | | import com.yuanchu.limslaboratory.pojo.dto.SelectMeteringPlanDto; |
| | | import com.yuanchu.limslaboratory.service.MeteringPlanService; |
| | |
| | | return Result.success(page); |
| | | } |
| | | |
| | | @ApiOperation("查询计量信息") |
| | | public Result<?> getPlanMeasureInstrument(Integer id){ |
| | | return Result.success(meteringPlanService.getPlanMeasureInstrument(id)); |
| | | @ApiOperation("单询计划信息") |
| | | @GetMapping("/getPlanMeasureInstrument") |
| | | public Result<?> getPlanMeasureInstrument(GetPlanMeasureInstrumentDto dto){ |
| | | return Result.success(meteringPlanService.getPlanMeasureInstrument(dto)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("计划信息之下分页") |
| | | @GetMapping("/limitGetPlanMeasureInstrument") |
| | | public Result<?> limitGetPlanMeasureInstrument(GetPlanMeasureInstrumentDto dto){ |
| | | return Result.success(meteringPlanService.limitGetPlanMeasureInstrument(dto)); |
| | | } |
| | | } |