Slide.php 458 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Slide extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'pagetab' => 'string',
  10. 'title' => 'string',
  11. 'tilpic' => 'string',
  12. 'stype' => 'tinyint',
  13. 'tilurl' => 'string',
  14. 'priority' => 'int'
  15. ];
  16. public function getStypeTextAttr($value,$data)
  17. {
  18. $stype = [1=>'系统链接', 2=>'网络链接'];
  19. return $stype[$data['stype']];
  20. }
  21. }