123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- *
- *User:Administrator
- *Date:2021/10/28
- */
- namespace app\api\controller\v1;
- use app\api\business\CydBus;
- use think\exception\ValidateException;
- class Cyd
- {
- public function getCydList()
- {
- $task_id = request()->param('task_id', '', 'int');
- try {
- validate(\app\api\validate\Sample::class)->scene('get_cyd_list')->check($task_id);
- } catch (ValidateException $exception) {
- return show(config('status.err_validate'),$exception->getError());
- }
- $result = (new CydBus())->getCydList($task_id);
- if ($result['total'] == 0) {
- return showError(config('status.none_cyd_info'));
- }
- return showSuccess($result);
- }
- }
|