Files
liche/common/models/market/Market_sys_dictionary_model.php
2022-09-29 14:30:16 +08:00

17 lines
366 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Notes:字典表
* Created on: 2022/09/19 14:52
* Created by: dengbw
*/
class Market_sys_dictionary_model extends HD_Model
{
private $table_name = 'lc_market_sys_dictionary';
public function __construct()
{
parent::__construct($this->table_name, 'default');
}
}