21 lines
346 B
PHP
21 lines
346 B
PHP
<?php
|
|
/**
|
|
* Created by Vim
|
|
* User: lcc
|
|
* Date: 2021/10/29
|
|
* Time: 15:47
|
|
*/
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Receiver_fine_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_receiver_fine';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
}
|