1234567891011121314151617181920212223 |
- <?php
- namespace app\admin\model;
- use think\Model;
- /**
- * Protocol
- */
- class Protocol extends Model
- {
- // 表名
- protected $name = 'protocol';
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- public function getEditorAttr($value): string
- {
- return !$value ? '' : htmlspecialchars_decode($value);
- }
- }
|