20 lines
360 B
PHP
20 lines
360 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Created by Vim.
|
|
* User: lcc
|
|
* Date: 2021/06/23
|
|
* Time: 16:24
|
|
*/
|
|
class App_licheb_brokerage_model extends HD_Model
|
|
{
|
|
|
|
private $table_name = 'lc_app_licheb_brokerage';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
}
|