| | |
| | | /** |
| | | * 获取验收记录管理列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:accept:list')") |
| | | @PreAuthorize("@ss.hasPermi('houseManage:check:list')") |
| | | @ApiOperation(value = "获取验收记录分页列表") |
| | | @PostMapping(value = "/pageList") |
| | | public R<PageInfo<TCheckAcceptRecordVO>> pageList(@RequestBody TCheckAcceptRecordQuery query) { |
| | |
| | | /** |
| | | * 添加验收记录管理 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:accept:add')") |
| | | @PreAuthorize("@ss.hasPermi('houseManage:check:add')") |
| | | @Log(title = "验收记录信息-新增验收记录", businessType = BusinessType.INSERT) |
| | | @ApiOperation(value = "添加验收记录") |
| | | @PostMapping(value = "/add") |
| | |
| | | /** |
| | | * 查看验收记录详情 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:accept:detail')") |
| | | @PreAuthorize("@ss.hasPermi('houseManage:check:detail')") |
| | | @ApiOperation(value = "查看验收记录详情") |
| | | @GetMapping(value = "/getDetailById") |
| | | public R<TCheckAcceptRecordVO> getDetailById(@RequestParam String id) { |
| | |
| | | /** |
| | | * 删除验收记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:accept:delete')") |
| | | @PreAuthorize("@ss.hasPermi('houseManage:check:delete')") |
| | | @Log(title = "验收记录信息-删除验收记录", businessType = BusinessType.DELETE) |
| | | @ApiOperation(value = "删除验收记录") |
| | | @DeleteMapping(value = "/deleteById") |
| | |
| | | /** |
| | | * 批量删除验收记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:accept:delete')") |
| | | @PreAuthorize("@ss.hasPermi('houseManage:check:delete')") |
| | | @Log(title = "验收记录信息-删除验收记录", businessType = BusinessType.DELETE) |
| | | @ApiOperation(value = "批量删除验收记录") |
| | | @DeleteMapping(value = "/deleteByIds") |