Setting.php 369 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\api\model;
  3. use app\common\model\Setting as SettingModel;
  4. /**
  5. * 系统设置模型
  6. * Class Setting
  7. * @package app\api\model
  8. */
  9. class Setting extends SettingModel
  10. {
  11. /**
  12. * 获取积分名称
  13. * @return string
  14. */
  15. public static function getPointsName()
  16. {
  17. return static::getItem('points')['points_name'];
  18. }
  19. }