|  |  | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
 |  |  | import com.zy.asrs.framework.common.R; | 
 |  |  | import com.zy.asrs.wms.asrs.entity.PickSheet; | 
 |  |  | import com.zy.asrs.wms.asrs.entity.PickSheetDetl; | 
 |  |  | import com.zy.asrs.wms.asrs.entity.param.PageRequest; | 
 |  |  | import com.zy.asrs.wms.asrs.service.PickSheetService; | 
 |  |  | 
 |  |  |      */ | 
 |  |  |     @PostMapping("/pick/flat/page") | 
 |  |  |     public R getOutFlatSheet(@RequestBody PageRequest params) { | 
 |  |  |         IPage page = pickSheetService.getOutFlatSheet(params); | 
 |  |  |         return R.ok().add(page.getRecords()); | 
 |  |  |         IPage<PickSheet> page = pickSheetService.getOutFlatSheet(params); | 
 |  |  |         return R.ok().add(page); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** |