|
...
|
...
|
@@ -12,6 +12,7 @@ namespace App\Http\Controllers\Aside\Com; |
|
|
|
use App\Enums\Common\Code;
|
|
|
|
use App\Http\Controllers\Aside\BaseController;
|
|
|
|
use App\Models\Com\KeywordVideoTask;
|
|
|
|
use App\Models\Com\KeywordVideoTaskLog;
|
|
|
|
use App\Models\Domain\DomainInfo;
|
|
|
|
use App\Models\Project\Project;
|
|
|
|
|
|
...
|
...
|
@@ -125,4 +126,23 @@ class KeywordVideoController extends BaseController |
|
|
|
}
|
|
|
|
$this->response('success');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :记录
|
|
|
|
* @name :getVideoTaskLog
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/3/1 16:40
|
|
|
|
*/
|
|
|
|
public function getVideoTaskLog(){
|
|
|
|
$this->request->validate([
|
|
|
|
'project_id'=>'required',
|
|
|
|
], [
|
|
|
|
'project_id.required' => '项目唯一标识不为空',
|
|
|
|
]);
|
|
|
|
$taskLogModel = new KeywordVideoTaskLog();
|
|
|
|
$list = $taskLogModel->list($this->map);
|
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
|
|
|
|
} |
...
|
...
|
|