|
1
|
-<?php
|
|
|
|
2
|
-/**
|
|
|
|
3
|
- * @remark :
|
|
|
|
4
|
- * @name :TestController.php
|
|
|
|
5
|
- * @author :lyh
|
|
|
|
6
|
- * @method :post
|
|
|
|
7
|
- * @time :2024/11/5 9:44
|
|
|
|
8
|
- */
|
|
|
|
9
|
-
|
|
|
|
10
|
-namespace App\Http\Controllers\Bside;
|
|
|
|
11
|
-
|
|
|
|
12
|
-use App\Enums\Common\Code;
|
|
|
|
13
|
-use App\Helper\FormGlobalsoApi;
|
|
|
|
14
|
-use App\Helper\PayStripeApi;
|
|
|
|
15
|
-use App\Helper\Translate;
|
|
|
|
16
|
-use App\Http\Logic\Bside\News\NewsLogic;
|
|
|
|
17
|
-use App\Models\Ai\AiBlog;
|
|
|
|
18
|
-use App\Models\Channel\Channel;
|
|
|
|
19
|
-use App\Models\CustomModule\CustomModuleCategory;
|
|
|
|
20
|
-use App\Models\CustomModule\CustomModuleContent;
|
|
|
|
21
|
-use App\Models\CustomModule\CustomModuleExtentContent;
|
|
|
|
22
|
-use App\Models\Domain\DomainInfo;
|
|
|
|
23
|
-use App\Models\ExtentModule\ExtensionModuleValue;
|
|
|
|
24
|
-use App\Models\HomeCount\Count;
|
|
|
|
25
|
-use App\Models\Manage\ManageHr;
|
|
|
|
26
|
-use App\Models\Project\CountAllProject as AllProject;
|
|
|
|
27
|
-use App\Models\Project\Project;
|
|
|
|
28
|
-use App\Models\Project\ProjectAiSetting;
|
|
|
|
29
|
-use App\Models\RouteMap\RouteMap;
|
|
|
|
30
|
-use App\Services\AiBlogService;
|
|
|
|
31
|
-use App\Services\AiVideoService;
|
|
|
|
32
|
-use App\Services\RapIdApIService;
|
|
|
|
33
|
-use App\Services\ProjectServer;
|
|
|
|
34
|
-use Illuminate\Support\Facades\DB;
|
|
|
|
35
|
-
|
|
|
|
36
|
-class TestController extends BaseController
|
|
|
|
37
|
-{
|
|
|
|
38
|
- /**
|
|
|
|
39
|
- * @remark :创建项目
|
|
|
|
40
|
- * @name :createProject
|
|
|
|
41
|
- * @author :lyh
|
|
|
|
42
|
- * @method :post
|
|
|
|
43
|
- * @time :2025/2/13 16:34
|
|
|
|
44
|
- */
|
|
|
|
45
|
- public function ceshi(){
|
|
|
|
46
|
- $hrModel = new ManageHr();
|
|
|
|
47
|
- $data = $hrModel->accordIdGetLeader($this->param['id']);
|
|
|
|
48
|
- $this->response('success',Code::SUCCESS,$data);
|
|
|
|
49
|
- }
|
|
|
|
50
|
-} |
|
|