Display.php 494 B

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