18 lines
358 B
PHP
18 lines
358 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Notes:门店素材模板
|
|
* Created on: 2021/10/11 12:45
|
|
* Created by: dengbw
|
|
*/
|
|
class Material_biz_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_material_biz';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
}
|