9 lines
264 B
PHP
9 lines
264 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
class Auto_api_log_model extends HD_Model{
|
|
private $table_name = 'lc_auto_api_log';
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |