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