123456789101112131415161718192021 |
- <?php
- namespace app\common\model;
- use think\Model;
- class UserWill extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'title' => 'string',
- 'isdefault' => 'tinyint'
- ];
-
- public function getIsdefaultTextAttr($value,$data)
- {
- $isdefault = [1=>'否', 2=>'是'];
- return $isdefault[$data['isdefault']];
- }
-
- }
|