Autoreply.php 392 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\model\xmwechat\offiaccount;
  3. use think\Model;
  4. /**
  5. * Autoreply
  6. */
  7. class Autoreply extends Model
  8. {
  9. // 表名
  10. protected $name = 'wechat_offiaccount_autoreply';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = true;
  13. public function getReplyContentAttr($value): string
  14. {
  15. return htmlspecialchars_decode($value);
  16. }
  17. }