28 lines
551 B
PHP
28 lines
551 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* 公司
|
|
* Created by PhpStorm.
|
|
* User: xuxb
|
|
* Date: 2021/7/29
|
|
* Time: 17:32
|
|
*/
|
|
class Sys_company_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_sys_company';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* 状态
|
|
* @return array
|
|
*/
|
|
function status_ary(){
|
|
$statusAry = array(/*'-1' => '删除',*/ '0' => '关闭', '1' => '开启');
|
|
|
|
return $statusAry;
|
|
}
|
|
} |