22 lines
489 B
PHP
22 lines
489 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* Created by Vim.
|
|
* User: lcc
|
|
* Date: 2023/03/14
|
|
* Time: 16:24
|
|
*/
|
|
class Auto_option_model extends HD_Model{
|
|
private $table_name = 'lc_auto_option';
|
|
private $status_arr = [ '-1' => '删除',0 => '下架',1 => '正常'];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
public function get_status(){
|
|
return $this->status_arr;
|
|
}
|
|
}
|