| 123456789101112131415161718 |
- <?php
- namespace addons\WechatVideoShop\common\service;
- use addons\WechatVideoShop\common\models\WechatVideoShopLevel;
- class LevelService
- {
- public static function globalGoodsModelLevel(array $params)
- {
- $levels = WechatVideoShopLevel::lists($params);
- array_unshift($levels, [
- 'level' => 0,
- 'name' => '默认等级'
- ]);
- return $levels;
- }
- }
|