SystemConfig.php 708 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | saiadmin [ saiadmin快速开发框架 ]
  4. // +----------------------------------------------------------------------
  5. // | Author: sai <1430792918@qq.com>
  6. // +----------------------------------------------------------------------
  7. namespace plugin\saiadmin\app\model\system;
  8. use plugin\saiadmin\basic\BaseModel;
  9. /**
  10. * 参数配置模型
  11. */
  12. class SystemConfig extends BaseModel
  13. {
  14. /**
  15. * 数据表主键
  16. * @var string
  17. */
  18. protected $pk = 'id';
  19. protected $table = 'sa_system_config';
  20. public function getConfigSelectDataAttr($value)
  21. {
  22. return json_decode($value ?? '', true);
  23. }
  24. }