Files
liche/common/models/auto/Auto_article_model.php
T
2021-12-16 17:02:33 +08:00

18 lines
347 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Created by PhpStorm.
* User: xuxb
* Date: 2021/8/25
* Time: 10:51
*/
class Auto_article_model extends HD_Model
{
private $table_name = 'lc_auto_article';
public function __construct()
{
parent::__construct($this->table_name, 'default');
}
}