Protocol.php 358 B

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