WechatConfig.php 653 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace addons\wechat\model;
  3. use think\Model;
  4. class WechatConfig extends Model
  5. {
  6. // 表名,不含前缀
  7. public $name = 'wechat_config';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. // 追加属性
  14. protected $append = [
  15. ];
  16. /**
  17. * 读取指定配置名称的值
  18. * @param string $name
  19. * @return string
  20. */
  21. public static function getValue($name)
  22. {
  23. $item = self::get(['name' => $name]);
  24. return $item ? $item->value : '';
  25. }
  26. }