SystemConfigValue.php 493 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\admin\model;
  3. use support\Model;
  4. /**
  5. * 配置内容表模型
  6. * Class SystemConfigClassify
  7. * @package app\api\model
  8. */
  9. class SystemConfigValue extends Model
  10. {
  11. const WAIT = '0';
  12. const DONE = '1';
  13. const MEMBER_AUTH_STATUS = [
  14. self::WAIT => '否',
  15. self::DONE => '是',
  16. ];
  17. /**
  18. * The table associated with the model.
  19. *
  20. * @var string
  21. */
  22. protected $table = 'system_config_value';
  23. public $timestamps = false;
  24. }