UserWill.php 378 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserWill extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'title' => 'string',
  10. 'isdefault' => 'tinyint'
  11. ];
  12. public function getIsdefaultTextAttr($value,$data)
  13. {
  14. $isdefault = [1=>'否', 2=>'是'];
  15. return $isdefault[$data['isdefault']];
  16. }
  17. }