| 1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model\shops;
- use app\common\model\BaseModel;
- /**
- * ShopGoodSpecsInventory模型
- * Class ShopGoodSpecsInventory
- * @package app\common\model\shops
- */
- class ShopGoodSpecsInventory extends BaseModel
- {
-
- protected $name = 'shop_good_specs_inventory';
- protected $type = [
- 'specs' => 'array',
- ];
-
- }
|