13 lines
151 B
PHP
13 lines
151 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\admin\model\manystore;
|
||
|
|
||
|
use think\Model;
|
||
|
|
||
|
class Shop extends Model
|
||
|
{
|
||
|
// 表名
|
||
|
protected $name = 'manystore_shop';
|
||
|
|
||
|
}
|