* @version : HUOSDK 9.0 */ namespace huoIdentify\model; class LogModel extends \huo\model\log\LogModel { /** * 检查表是否处在 * * @param int $create_time * * @return void */ function checkTable($create_time = 0) { $_time = !empty($create_time) ? $create_time : time(); $this->partition_data[$this->partition_field] = date('Y-m-d', $_time); $this->table = $this->getPartitionTableName( $this->partition_data, $this->partition_field, $this->partition_rule ); } }