17 lines
375 B
PHP
17 lines
375 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:专题模块-按钮表
|
|
* Created on: 2020/10/20 13:46
|
|
* Created by: dengbw
|
|
*/
|
|
class Topic_module_button_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_topic_module_button';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |