| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\common\model;
- class BannerItem extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'banner_item';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- /**
- * @var array
- */
- protected $hidden = ['deleted_at','updated_at'];
- public function getOpenurlAttr($value){
- return ltrim($value);
- }
- }
|