Files
spacestation/common/models/receiver/Receiver_customer_sign_model.php
2024-05-29 21:21:55 +08:00

14 lines
289 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Receiver_customer_sign_model extends HD_Model
{
private $table_name = 'lc_receiver_customer_sign';
public function __construct()
{
parent::__construct($this->table_name, 'default');
}
}