| 12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\model\sharp;
- use app\common\model\sharp\Setting as SettingModel;
- /**
- * 整点秒杀设置模型
- * Class Setting
- * @package app\api\model\sharp
- */
- class Setting extends SettingModel
- {
- /**
- * 获取是否开启分销
- * @return array
- */
- public static function getIsDealer()
- {
- return static::getItem('basic')['is_dealer'];
- }
- }
|