30 lines
571 B
PHP
30 lines
571 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:车型介绍
|
|
* Created on: 2022/3/18 10:31
|
|
* Created by: dengbw
|
|
*/
|
|
class Auto_introduce_model extends HD_Model
|
|
{
|
|
|
|
private $table_name = 'lc_auto_introduce';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:状态
|
|
* Created on: 2022/3/18 10:31
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
public function statusAry()
|
|
{
|
|
return array(1 => '正常', 0 => '禁用');
|
|
}
|
|
}
|