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