| | |
| | | import cn.flightfeather.supervision.domain.entity.Company |
| | | import cn.flightfeather.supervision.domain.entity.PersonalInfo |
| | | import cn.flightfeather.supervision.domain.entity.SelfPatrolTask |
| | | import cn.flightfeather.supervision.domain.entity.UserSettingRecord |
| | | import cn.flightfeather.supervision.lightshare.service.AuthService |
| | | import cn.flightfeather.supervision.lightshare.service.SelfPatrolService |
| | | import cn.flightfeather.supervision.lightshare.vo.AuthSceneVo |
| | |
| | | fun getDetailList( |
| | | @ApiParam(value = "自寻查任务id") @RequestParam taskId: String, |
| | | ) = selfPatrolService.getDetailList(taskId) |
| | | |
| | | @ApiOperation("自巡查承诺") |
| | | @PostMapping("/promise") |
| | | fun promiseSelfPatrol( |
| | | @ApiParam(value = "用户id") @RequestParam userId: String, |
| | | ) = resPack { selfPatrolService.promiseSelfPatrol(userId) } |
| | | |
| | | |
| | | } |