This commit is contained in:
dengbw
2022-01-28 16:16:36 +08:00
committed by lccsw
parent 0ee991aa85
commit 175e599700
60 changed files with 4554 additions and 46 deletions
@@ -0,0 +1,17 @@
<?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');
}
}