This commit is contained in:
wangjinlei
2021-02-26 10:44:22 +08:00
parent d3b80b03c7
commit 04aef584a3
4 changed files with 207 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ class Auto extends Controller {
* 处理过期审稿
*/
public function overdue_reviewer() {
die('Temporarily Out of Service');
$where['state'] = 0;
$where['ctime'] = ['lt', time() - 3600 * 24 * 14];
$revs = $this->article_reviewer_obj->where($where)->select();