| | |
| | | import org.jeecg.common.system.vo.LoginUser; |
| | | import org.jeecg.modules.system.service.ISysBusinessCodeRuleService; |
| | | import org.jeecg.modules.tms.entity.BaseTools; |
| | | import org.jeecg.modules.tms.entity.ToolSharpening; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBound; |
| | | import org.jeecg.modules.tms.entity.ToolsStocktakingBoundDetail; |
| | | import org.jeecg.modules.tms.entity.dto.LossBoundFlowDto; |
| | |
| | | return Result.OK("文件导入失败!"); |
| | | } |
| | | |
| | | /** |
| | | * 工具台账-盘点子页面列表查询 |
| | | * |
| | | * @param toolsStocktakingBound |
| | | * @param pageNo |
| | | * @param pageSize |
| | | * @param query |
| | | * @return |
| | | */ |
| | | @ApiOperation(value="工具台账-盘点子页面列表查询", notes="工具台账-盘点子页面列表查询") |
| | | @GetMapping(value = "/toolsStocktakingList") |
| | | public Result<?> toolsStocktakingList(ToolsStocktakingBound toolsStocktakingBound, |
| | | @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, |
| | | @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, |
| | | @RequestParam Map<String, String> query) { |
| | | IPage<Map<String, Object>> pageList = toolsStocktakingBoundDetailService.toolsStocktakingList(pageNo,pageSize, query); |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | } |