13 lines
251 B
PHP
13 lines
251 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
class CrawlerTaskLog extends BaseModel
|
|
{
|
|
protected $name = 'crawler_task_log';
|
|
|
|
protected $autoWriteTimestamp = 'int';
|
|
protected $createTime = 'create_time';
|
|
protected $updateTime = 'update_time';
|
|
}
|