LevelService.php 408 B

123456789101112131415161718
  1. <?php
  2. namespace addons\WechatVideoShop\common\service;
  3. use addons\WechatVideoShop\common\models\WechatVideoShopLevel;
  4. class LevelService
  5. {
  6. public static function globalGoodsModelLevel(array $params)
  7. {
  8. $levels = WechatVideoShopLevel::lists($params);
  9. array_unshift($levels, [
  10. 'level' => 0,
  11. 'name' => '默认等级'
  12. ]);
  13. return $levels;
  14. }
  15. }