作者 lyh

gx脚本锚文本数量

... ... @@ -52,7 +52,12 @@ class lyhDemo extends Command
$projectArr = [3257,1835,1834];
$v6WeekModel = new V6WeeklyReport();
foreach ($projectArr as $item){
$projectModel = new Project();
$latest = $v6WeekModel->formatQuery(['project_id'=>$item])->orderBy('id', 'desc')->first()->toArray();
$list = $projectModel->read(['delete_status'=>0,'id'=>$item],['id','title','is_weekly_report','main_lang_id']);
$latest['main_lang_id'] = $list['main_lang_id'];
$latest['is_weekly_report'] = $list['is_weekly_report'];
$latest['title'] = $list['title'];
$this->workChatMessage($latest,$item);
}
return true;
... ...