ComjobsShare.php 409 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class ComjobsShare extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'title' => 'string',
  10. 'tilpic' => 'string',
  11. 'status' => 'tinyint',
  12. 'priority' => 'int'
  13. ];
  14. public function getStatusTextAttr($value,$data)
  15. {
  16. $status = [1=>'显示',2=>'隐藏'];
  17. return $status[$data['status']];
  18. }
  19. }