Config.php 545 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\common\model\pay;
  3. use think\Model;
  4. class Config extends Model
  5. {
  6. // 表名
  7. protected $name = 'shop_pay_config';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. public function getParamsAttr($value)
  18. {
  19. return json_decode($value, true);
  20. }
  21. }