17 lines
369 B
PHP
17 lines
369 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:专题模块-文本表
|
|
* Created on: 2020/2/9 13:46
|
|
* Created by: dengbw
|
|
*/
|
|
class Topic_module_text_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_topic_module_text';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |