17 lines
347 B
PHP
Executable File
17 lines
347 B
PHP
Executable File
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: xuxb
|
|
* Date: 2019/11/27
|
|
* Time: 14:52
|
|
*/
|
|
class App_wxpaylog_model extends HD_Model{
|
|
private $table_name = 'lc_app_wxpaylog';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
}
|