mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
22 lines
282 B
PHP
22 lines
282 B
PHP
<?php
|
|
|
|
namespace app\data\controller;
|
|
|
|
use think\admin\Controller;
|
|
|
|
/**
|
|
* 商品数据管理
|
|
* Class ShopGoods
|
|
* @package app\data\controller
|
|
*/
|
|
class ShopGoods extends Controller
|
|
{
|
|
/**
|
|
* 绑定数据表
|
|
* @var string
|
|
*/
|
|
private $table = 'ShopGoods';
|
|
|
|
|
|
|
|
} |