20 lines
332 B
PHP
20 lines
332 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: xuxb
|
|
* Date: 2019/11/20
|
|
* Time: 15:07
|
|
*/
|
|
class App_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_app';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
}
|