| | |
| | | } |
| | | |
| | | /** |
| | | * 巡检日历 |
| | | * 管理端--巡检日历 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordMonth')") |
| | | @ApiOperation("管理端--巡检日历") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 巡检日历 |
| | | * 管理端--点击日历获取该记录下人员打卡记录 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordMonth')") |
| | | @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordDetails')") |
| | | @ApiOperation("管理端--点击日历获取该记录下人员打卡记录") |
| | | @PostMapping("recordDetails") |
| | | public Results recordDetails(@RequestBody ArdAppPatrolpointRecordParam ardAppPatrolpointRecordParam) throws ParseException { |
| | | return recordService.recordDetails(ardAppPatrolpointRecordParam); |
| | | } |
| | | |
| | | /** |
| | | * 管理端--单人详情 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordSolo')") |
| | | @ApiOperation("管理端--单人详情") |
| | | @PostMapping("recordSolo") |
| | | public Results recordSolo(@RequestBody ArdAppPatrolpointRecordParam ardAppPatrolpointRecordParam) throws ParseException { |
| | | return recordService.recordSolo(ardAppPatrolpointRecordParam); |
| | | } |
| | | } |