17 lines
377 B
PHP
17 lines
377 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* Notes:私域直播_分组表
|
|
* Created on: 2022/11/25 14:52
|
|
* Created by: dengbw
|
|
*/
|
|
|
|
class Market_sylive_groups_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_market_sylive_groups';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
} |