17 lines
351 B
PHP
17 lines
351 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* 车型库
|
|
* Created by PhpStorm.
|
|
* User: xuxb
|
|
* Date: 2021/8/6
|
|
* Time: 11:13
|
|
*/
|
|
class Auto_cars_model extends HD_Model{
|
|
private $table_name = 'lc_auto_cars';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |