123456789101112131415161718192021222324 |
- <?php
- namespace frontend\modules\api\controllers;
- use common\services\AccidentCasesDimensionService;
- use Exception;
- use frontend\modules\api\components\BaseAdminController;
- use yii\web\Response;
- class AccidentCasesDimensionController extends BaseAdminController
- {
- /**
- * 评价维度修改
- * @return Response
- * @throws Exception
- * @throws \Throwable
- */
- public function actionUpdate()
- {
- AccidentCasesDimensionService::update($this->getAllParams(), $this->userInfo);
- return $this->asJson();
- }
- }
|