17 lines
360 B
PHP
17 lines
360 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:专题-报名数据表
|
|
* Created on: 2023/3/27 13:46
|
|
* Created by: dengbw
|
|
*/
|
|
class Topic_enroll_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_topic_enroll';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |