| | |
| | | int size = checkAcceptRecordService.list(new LambdaQueryWrapper<TCheckAcceptRecord>() |
| | | .likeRight(TCheckAcceptRecord::getAcceptanceTime, LocalDate.now())).size(); |
| | | dto.setCode(replace.substring(2)+String.format("%03d", size+1)); |
| | | dto.setStatus(true); |
| | | // 添加验收记录 |
| | | checkAcceptRecordService.save(dto); |
| | | return R.ok(); |
| | |
| | | * 获取报修管理列表 |
| | | */ |
| | | @ApiOperation(value = "管理员-房屋维修分页列表") |
| | | @PostMapping(value = "/pageList") |
| | | @PostMapping(value = "/houstPageList") |
| | | public R<PageInfo<TFaultRepairMessageVO>> pageList(@RequestBody TFaultRepairMessageAppletQuery query) { |
| | | return R.ok(tFaultRepairMessageService.pageListApplet(query)); |
| | | } |
| | |
| | | @ApiOperation(value = "管理员-我的审批-审批") |
| | | @GetMapping("/examine") |
| | | public R examine(@RequestParam String id){ |
| | | |
| | | return R.ok(); |
| | | } |
| | | |