This commit is contained in:
wangjinlei
2021-03-30 14:55:44 +08:00
parent 5ef27073bb
commit e31c67e77c
2 changed files with 16 additions and 3 deletions

View File

@@ -111,6 +111,15 @@ class Super extends Controller{
private function getSJ($journalId){
$res = $this->article_obj->where('journal_id',$journalId)->where('state',5)->select();
foreach ($res as $v){
//文章提交至接收超过48小时
$t48 = $this->article_obj->where('journal_id',$v['journal_id'])->where('state',0)->count();
//文章接受时间小于15天
//文章接收时间大于120天
//with editor时间超过三天预留
$cache_list = $this->article_obj->where('journal_id',$v['journal_id'])->where('state',5)->select();
}