Setting.php 478 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. *
  4. * @copyright ©2020 点小铺
  5. * @author hanj
  6. * @link: https://dyuit.com
  7. * Created by VSCode
  8. */
  9. namespace app\api\model;
  10. use app\common\model\Setting as SettingModel;
  11. /**
  12. * 系统设置模型
  13. * Class Setting
  14. * @package app\api\model
  15. */
  16. class Setting extends SettingModel
  17. {
  18. /**
  19. * 获取积分名称
  20. * @return string
  21. */
  22. public static function getPointsName()
  23. {
  24. return static::getItem('points')['points_name'];
  25. }
  26. }